]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/ip_ecn.h
xnu-792.6.76.tar.gz
[apple/xnu.git] / bsd / netinet / ip_ecn.h
index 4aa2132c532c2ee7fd81c98caa138455c0d62c0a..6e452f57854b60006f01166c4e6ed61dfb59505f 100644 (file)
  */
 #include <sys/appleapiopts.h>
 
+#ifdef KERNEL_PRIVATE
 #define ECN_ALLOWED    1       /* ECN allowed */
 #define ECN_FORBIDDEN  0       /* ECN forbidden */
 #define ECN_NOCARE     (-1)    /* no consideration to ECN */
 
-#ifdef KERNEL
-#ifdef __APPLE_API_PRIVATE
-extern void ip_ecn_ingress __P((int, u_int8_t *, const u_int8_t *));
-extern void ip_ecn_egress __P((int, const u_int8_t *, u_int8_t *));
-#endif /* __APPLE_API_PRIVATE */
-#endif
+extern void ip_ecn_ingress(int, u_int8_t *, const u_int8_t *);
+extern void ip_ecn_egress(int, const u_int8_t *, u_int8_t *);
+#endif KERNEL_PRIVATE