From 45cbfb9d11c23d5f64a795fb05205ced48db1c7c Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 1 Mar 2017 22:00:14 +0100 Subject: include: don't include kernel headers in public libnl3 headers It would be desirable not to include kernel headers in our public libnl3 headers. As a test, remove all those includes, and fix compilation by explicitly including the kernel headers where needed. In some cases, that requires forward declaration for kernel structures, as we use them as part of our own headers. Realistically, we cannot drop those includes as it probalby breaks compilation for users that expect to get a certain kernel header when including a libnl3 header. So, this will not be done and the includes will be restored in the next commit. Do this step to show how it would be and to verify that we could build with such a change. The reason not to do this is backward compatibility (at compile-time). --- src/genl-ctrl-list.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/genl-ctrl-list.c') diff --git a/src/genl-ctrl-list.c b/src/genl-ctrl-list.c index 078c30c7..e6d09c35 100644 --- a/src/genl-ctrl-list.c +++ b/src/genl-ctrl-list.c @@ -11,6 +11,8 @@ #include +#include + static struct nl_cache *alloc_genl_family_cache(struct nl_sock *sk) { return nl_cli_alloc_cache(sk, "generic netlink family", -- cgit v1.2.3