]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/if_tun.h
xnu-792.6.61.tar.gz
[apple/xnu.git] / bsd / netinet / if_tun.h
index 6e548368ad9753e21213b2a5f61dae54c414a3e8..9f748c7a3608a86eabfc6f2393fe5ef8fe61bfd6 100644 (file)
@@ -37,7 +37,9 @@
 
 #ifndef _NET_IF_TUN_H_
 #define _NET_IF_TUN_H_
+#include <sys/appleapiopts.h>
 
+#ifdef KERNEL_PRIVATE
 struct tun_softc {
        u_short tun_flags;              /* misc flags */
 #define        TUN_OPEN        0x0001
@@ -60,11 +62,13 @@ struct tun_softc {
 #endif
 };
 
-/* Maximum packet size */
-#define        TUNMTU          1500
+#endif KERNEL_PRIVATE
 
 /* ioctl's for get/set debug */
 #define        TUNSDEBUG       _IOW('t', 90, int)
 #define        TUNGDEBUG       _IOR('t', 89, int)
 
+/* Maximum packet size */
+#define        TUNMTU          1500
+
 #endif /* !_NET_IF_TUN_H_ */