1*43a90889SApple OSS Distributionsmodule Darwin.netinet6 [system] { 2*43a90889SApple OSS Distributions #ifdef XNU_KERNEL_PRIVATE 3*43a90889SApple OSS Distributions // The XNU_PLATFORM_MacOSX headers are in the public SDK for macOS, 4*43a90889SApple OSS Distributions // but mastered out of the public SDK for the other OSes. 5*43a90889SApple OSS Distributions #endif 6*43a90889SApple OSS Distributions #ifdef XNU_PLATFORM_MacOSX 7*43a90889SApple OSS Distributions module ah { 8*43a90889SApple OSS Distributions header "netinet6/ah.h" 9*43a90889SApple OSS Distributions export * 10*43a90889SApple OSS Distributions } 11*43a90889SApple OSS Distributions 12*43a90889SApple OSS Distributions module esp { 13*43a90889SApple OSS Distributions header "netinet6/esp.h" 14*43a90889SApple OSS Distributions export * 15*43a90889SApple OSS Distributions } 16*43a90889SApple OSS Distributions 17*43a90889SApple OSS Distributions module in6_var { 18*43a90889SApple OSS Distributions header "netinet6/in6_var.h" 19*43a90889SApple OSS Distributions export * 20*43a90889SApple OSS Distributions } 21*43a90889SApple OSS Distributions 22*43a90889SApple OSS Distributions module ipcomp { 23*43a90889SApple OSS Distributions header "netinet6/ipcomp.h" 24*43a90889SApple OSS Distributions export * 25*43a90889SApple OSS Distributions } 26*43a90889SApple OSS Distributions 27*43a90889SApple OSS Distributions #endif 28*43a90889SApple OSS Distributions module ipsec { 29*43a90889SApple OSS Distributions header "netinet6/ipsec.h" 30*43a90889SApple OSS Distributions export * 31*43a90889SApple OSS Distributions } 32*43a90889SApple OSS Distributions 33*43a90889SApple OSS Distributions #ifdef XNU_PLATFORM_MacOSX 34*43a90889SApple OSS Distributions module raw_ip6 { 35*43a90889SApple OSS Distributions header "netinet6/raw_ip6.h" 36*43a90889SApple OSS Distributions export * 37*43a90889SApple OSS Distributions } 38*43a90889SApple OSS Distributions 39*43a90889SApple OSS Distributions #endif 40*43a90889SApple OSS Distributions module scope6_var { 41*43a90889SApple OSS Distributions header "netinet6/scope6_var.h" 42*43a90889SApple OSS Distributions export * 43*43a90889SApple OSS Distributions } 44*43a90889SApple OSS Distributions #ifdef XNU_KERNEL_PRIVATE 45*43a90889SApple OSS Distributions // nd6.h doesn't compile because it uses struct prf_ra which 46*43a90889SApple OSS Distributions // only exists in the context of struct in6_prflags. 47*43a90889SApple OSS Distributions #endif 48*43a90889SApple OSS Distributions #ifdef XNU_PLATFORM_MacOSX 49*43a90889SApple OSS Distributions 50*43a90889SApple OSS Distributions exclude header "netinet6/nd6.h" 51*43a90889SApple OSS Distributions #endif 52*43a90889SApple OSS Distributions} 53