diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2016-07-21 15:16:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-21 15:16:22 -0700 |
commit | 095aef5f30f634416dac2faa061f69e49c0bc729 (patch) | |
tree | c6c282dc1a623205f777a7a519db987115bc2877 | |
parent | 145ac31c8aedac69a466c3e7128007ebcaed6906 (diff) | |
parent | 1a896949804f60161118b742cadd2bf9c290420b (diff) | |
download | infinitytier-095aef5f30f634416dac2faa061f69e49c0bc729.tar.gz infinitytier-095aef5f30f634416dac2faa061f69e49c0bc729.zip |
Merge pull request #348 from the-maldridge/remove-sysctl
Remove explicit sys/sysctl.h includes
-rw-r--r-- | attic/OSXEthernetTap.cpp.pcap-with-bridge-test | 1 | ||||
-rw-r--r-- | attic/OSXEthernetTap.cpp.utun-work-in-progress | 1 | ||||
-rw-r--r-- | ext/libnatpmp/getgateway.c | 1 | ||||
-rw-r--r-- | osdep/BSDEthernetTap.cpp | 1 | ||||
-rw-r--r-- | osdep/ManagedRoute.cpp | 1 | ||||
-rw-r--r-- | osdep/OSXEthernetTap.cpp | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/attic/OSXEthernetTap.cpp.pcap-with-bridge-test b/attic/OSXEthernetTap.cpp.pcap-with-bridge-test index 60194421..baae0a4b 100644 --- a/attic/OSXEthernetTap.cpp.pcap-with-bridge-test +++ b/attic/OSXEthernetTap.cpp.pcap-with-bridge-test @@ -43,7 +43,6 @@ #include <sys/cdefs.h> #include <sys/uio.h> #include <sys/param.h> -#include <sys/sysctl.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <netinet/in.h> diff --git a/attic/OSXEthernetTap.cpp.utun-work-in-progress b/attic/OSXEthernetTap.cpp.utun-work-in-progress index b7a05334..f40483e8 100644 --- a/attic/OSXEthernetTap.cpp.utun-work-in-progress +++ b/attic/OSXEthernetTap.cpp.utun-work-in-progress @@ -43,7 +43,6 @@ #include <sys/cdefs.h> #include <sys/uio.h> #include <sys/param.h> -#include <sys/sysctl.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <sys/sys_domain.h> diff --git a/ext/libnatpmp/getgateway.c b/ext/libnatpmp/getgateway.c index dfb9f3e2..7f314152 100644 --- a/ext/libnatpmp/getgateway.c +++ b/ext/libnatpmp/getgateway.c @@ -96,7 +96,6 @@ POSSIBILITY OF SUCH DAMAGE. #ifdef USE_SYSCTL_NET_ROUTE #include <stdlib.h> -#include <sys/sysctl.h> #include <sys/socket.h> #include <net/route.h> #endif diff --git a/osdep/BSDEthernetTap.cpp b/osdep/BSDEthernetTap.cpp index 3e0c2264..e8d36c9c 100644 --- a/osdep/BSDEthernetTap.cpp +++ b/osdep/BSDEthernetTap.cpp @@ -34,7 +34,6 @@ #include <sys/cdefs.h> #include <sys/uio.h> #include <sys/param.h> -#include <sys/sysctl.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <netinet/in.h> diff --git a/osdep/ManagedRoute.cpp b/osdep/ManagedRoute.cpp index ae2f8943..264866fc 100644 --- a/osdep/ManagedRoute.cpp +++ b/osdep/ManagedRoute.cpp @@ -33,7 +33,6 @@ #ifdef __UNIX_LIKE__ #include <unistd.h> #include <sys/param.h> -#include <sys/sysctl.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/wait.h> diff --git a/osdep/OSXEthernetTap.cpp b/osdep/OSXEthernetTap.cpp index 56934c96..e5361ce4 100644 --- a/osdep/OSXEthernetTap.cpp +++ b/osdep/OSXEthernetTap.cpp @@ -34,7 +34,6 @@ #include <sys/cdefs.h> #include <sys/uio.h> #include <sys/param.h> -#include <sys/sysctl.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <netinet/in.h> |