diff options
author | Felix Janda <felix.janda@posteo.de> | 2015-05-16 11:50:25 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-05-21 14:47:28 +0200 |
commit | 12a5c50a831176b7f95a3535fe42ecbcf332afb1 (patch) | |
tree | 5223df9c15eadec62404293dac6ddfb000ae2936 /include | |
parent | 1c637fe7ea8a70a77273366d24e221b0d3d64702 (diff) | |
download | conntrack-tools-12a5c50a831176b7f95a3535fe42ecbcf332afb1.tar.gz conntrack-tools-12a5c50a831176b7f95a3535fe42ecbcf332afb1.zip |
src: Include <sys/select.h> for fd_set
Signed-off-by: Felix Janda <felix.janda@posteo.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/mcast.h | 1 | ||||
-rw-r--r-- | include/tcp.h | 1 | ||||
-rw-r--r-- | include/udp.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/include/mcast.h b/include/mcast.h index 402a033..f0225aa 100644 --- a/include/mcast.h +++ b/include/mcast.h @@ -4,6 +4,7 @@ #include <stdint.h> #include <netinet/in.h> #include <net/if.h> +#include <sys/select.h> struct mcast_conf { int ipproto; diff --git a/include/tcp.h b/include/tcp.h index 2f0fd0a..068d43a 100644 --- a/include/tcp.h +++ b/include/tcp.h @@ -3,6 +3,7 @@ #include <stdint.h> #include <netinet/in.h> +#include <sys/select.h> struct tcp_conf { int ipproto; diff --git a/include/udp.h b/include/udp.h index 9f9c17a..53d713d 100644 --- a/include/udp.h +++ b/include/udp.h @@ -3,6 +3,7 @@ #include <stdint.h> #include <netinet/in.h> +#include <sys/select.h> struct udp_conf { int ipproto; |