summaryrefslogtreecommitdiffstats
path: root/include/netlink-private/genl.h
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2013-01-24 12:51:24 (GMT)
committerThomas Graf <tgraf@suug.ch>2013-01-24 12:51:24 (GMT)
commit9680f910f46b78d700ae66a16c08d8927dfc2199 (patch)
treebcceae90ee6f564a3f5abd8b51316a00fa0377e7 /include/netlink-private/genl.h
parent1419851eb46aa5823c27792c3d4bb6a2b55ca9f4 (diff)
downloadlibnl-9680f910f46b78d700ae66a16c08d8927dfc2199.zip
libnl-9680f910f46b78d700ae66a16c08d8927dfc2199.tar.gz
libnl-9680f910f46b78d700ae66a16c08d8927dfc2199.tar.bz2
Move private header files to <netlink-private/*>
This clarifies the seperation between public and private header files. Signed-off-by: Thomas Graf <tgraf@suug.ch>
Diffstat (limited to 'include/netlink-private/genl.h')
-rw-r--r--include/netlink-private/genl.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/netlink-private/genl.h b/include/netlink-private/genl.h
new file mode 100644
index 0000000..0aca6d7
--- /dev/null
+++ b/include/netlink-private/genl.h
@@ -0,0 +1,20 @@
+/*
+ * netlink-private/genl.h Local Generic Netlink Interface
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation version 2.1
+ * of the License.
+ *
+ * Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
+ */
+
+#ifndef NETLINK_GENL_PRIV_H_
+#define NETLINK_GENL_PRIV_H_
+
+#include <netlink-private/netlink.h>
+#include <netlink/netlink.h>
+
+#define GENL_HDRSIZE(hdrlen) (GENL_HDRLEN + (hdrlen))
+
+#endif