aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet6/ipsec.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-12-29 04:46:21 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-12-29 04:46:21 +0000
commit664a31e4967a61ec61870f45adc2f1400617993e (patch)
treef6e6a9488aad27e9b1298da3083e214c1c209505 /sys/netinet6/ipsec.h
parenta0b57fb738b797a1aa540b8360260b19b6470bc4 (diff)
downloadsrc-664a31e4967a61ec61870f45adc2f1400617993e.tar.gz
src-664a31e4967a61ec61870f45adc2f1400617993e.zip
Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"
is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come.
Notes
Notes: svn path=/head/; revision=55205
Diffstat (limited to 'sys/netinet6/ipsec.h')
-rw-r--r--sys/netinet6/ipsec.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet6/ipsec.h b/sys/netinet6/ipsec.h
index ede791bb70ac..bd3bf540f7a3 100644
--- a/sys/netinet6/ipsec.h
+++ b/sys/netinet6/ipsec.h
@@ -39,7 +39,7 @@
#include <net/pfkeyv2.h>
#include <netkey/keydb.h>
-#ifdef KERNEL
+#ifdef _KERNEL
/*
* Security Policy Index
@@ -91,7 +91,7 @@ struct inpcbpolicy {
struct secpolicy *sp_out;
int priv; /* privileged socket ? */
};
-#endif /*KERNEL*/
+#endif /*_KERNEL*/
#define IPSEC_PORT_ANY 65535
#define IPSEC_ULPROTO_ANY 255
@@ -237,7 +237,7 @@ struct ipsecstat {
&ip6_ipsec_ecn, \
}
-#ifdef KERNEL
+#ifdef _KERNEL
#ifdef SYSCTL_DECL
SYSCTL_DECL(_net_inet_ipsec);
@@ -305,16 +305,16 @@ extern int ipsec4_tunnel_validate __P((struct ip *, u_int,
extern struct mbuf *ipsec_copypkt __P((struct mbuf *));
-#endif /*KERNEL*/
+#endif /*_KERNEL*/
-#ifndef KERNEL
+#ifndef _KERNEL
extern caddr_t ipsec_set_policy __P((char *policy, int buflen));
extern int ipsec_get_policylen __P((caddr_t buf));
extern char *ipsec_dump_policy __P((caddr_t buf, char *delimiter));
extern char *ipsec_strerror __P((void));
-#endif /*!KERNEL*/
+#endif /*!_KERNEL*/
#endif /*_NETINET6_IPSEC_H_*/