A user will typically copy nf-queue.c, make changes and compile: picking up /usr/include/linux/nfnetlink_queue.h rather than /usr/include/libnetfilter_queue/linux_nfnetlink_queue.h as is recommended. (Running `make nf-queue` from within libnetfilter_queue/examples will get the private cached version of nfnetlink_queue.h which is not distributed). Signed-off-by: Duncan Roe <duncan_roe@xxxxxxxxxxxxxxx> --- examples/nf-queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nf-queue.c b/examples/nf-queue.c index 5b86e69..7ad631d 100644 --- a/examples/nf-queue.c +++ b/examples/nf-queue.c @@ -11,9 +11,9 @@ #include <linux/netfilter/nfnetlink.h> #include <linux/types.h> -#include <linux/netfilter/nfnetlink_queue.h> #include <libnetfilter_queue/libnetfilter_queue.h> +#include <libnetfilter_queue/linux_nfnetlink_queue.h> /* NFQA_CT requires CTA_* attributes defined in nfnetlink_conntrack.h */ #include <linux/netfilter/nfnetlink_conntrack.h> -- 2.17.5