summaryrefslogtreecommitdiff
path: root/sys/external/bsd/ipf/netinet/ip_proxy.h
AgeCommit message (Collapse)Author
2012-09-15the result of the constructplunky
#define FOO defined(BAR) #if FOO [conditional code] #endif is "undefined", according to C99 6.10.1 note 4. So, change code like that to use the following paradigm #if defined(BAR) #define FOO 1 #else #define FOO 0 #endif #if FOO [conditional code] #endif
2012-07-22Merge IPFilter 5.1.2 into HEADdarrenr
2012-03-23apply our changes.christos
- prototypes - ip_h323_pxy.c is missing from the distribution - original tar distribution is missing <$>Id values in most files
2012-03-23import kernel portion of ipfilter 5.1.1christos