]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netkey/key_debug.h
xnu-7195.101.1.tar.gz
[apple/xnu.git] / bsd / netkey / key_debug.h
index 761571725301467a9de9ace803f0e3dd33e6dbf7..702d92014b1e8277ada881ff3dd70fdbdadadbef 100644 (file)
 #include <sys/appleapiopts.h>
 
 /* debug flags */
-#define KEYDEBUG_STAMP         0x00000001 /* path */
-#define KEYDEBUG_DATA          0x00000002 /* data */
-#define KEYDEBUG_DUMP          0x00000004 /* dump */
+#define KEYDEBUG_STAMP          0x00000001 /* path */
+#define KEYDEBUG_DATA           0x00000002 /* data */
+#define KEYDEBUG_DUMP           0x00000004 /* dump */
 
-#define KEYDEBUG_KEY           0x00000010 /* key processing */
-#define KEYDEBUG_ALG           0x00000020 /* ciph & auth algorithm */
-#define KEYDEBUG_IPSEC         0x00000040 /* ipsec processing */
+#define KEYDEBUG_KEY            0x00000010 /* key processing */
+#define KEYDEBUG_ALG            0x00000020 /* ciph & auth algorithm */
+#define KEYDEBUG_IPSEC          0x00000040 /* ipsec processing */
 
-#define KEYDEBUG_KEY_STAMP     (KEYDEBUG_KEY | KEYDEBUG_STAMP)
-#define KEYDEBUG_KEY_DATA      (KEYDEBUG_KEY | KEYDEBUG_DATA)
-#define KEYDEBUG_KEY_DUMP      (KEYDEBUG_KEY | KEYDEBUG_DUMP)
-#define KEYDEBUG_ALG_STAMP     (KEYDEBUG_ALG | KEYDEBUG_STAMP)
-#define KEYDEBUG_ALG_DATA      (KEYDEBUG_ALG | KEYDEBUG_DATA)
-#define KEYDEBUG_ALG_DUMP      (KEYDEBUG_ALG | KEYDEBUG_DUMP)
-#define KEYDEBUG_IPSEC_STAMP   (KEYDEBUG_IPSEC | KEYDEBUG_STAMP)
-#define KEYDEBUG_IPSEC_DATA    (KEYDEBUG_IPSEC | KEYDEBUG_DATA)
-#define KEYDEBUG_IPSEC_DUMP    (KEYDEBUG_IPSEC | KEYDEBUG_DUMP)
+#define KEYDEBUG_KEY_STAMP      (KEYDEBUG_KEY | KEYDEBUG_STAMP)
+#define KEYDEBUG_KEY_DATA       (KEYDEBUG_KEY | KEYDEBUG_DATA)
+#define KEYDEBUG_KEY_DUMP       (KEYDEBUG_KEY | KEYDEBUG_DUMP)
+#define KEYDEBUG_ALG_STAMP      (KEYDEBUG_ALG | KEYDEBUG_STAMP)
+#define KEYDEBUG_ALG_DATA       (KEYDEBUG_ALG | KEYDEBUG_DATA)
+#define KEYDEBUG_ALG_DUMP       (KEYDEBUG_ALG | KEYDEBUG_DUMP)
+#define KEYDEBUG_IPSEC_STAMP    (KEYDEBUG_IPSEC | KEYDEBUG_STAMP)
+#define KEYDEBUG_IPSEC_DATA     (KEYDEBUG_IPSEC | KEYDEBUG_DATA)
+#define KEYDEBUG_IPSEC_DUMP     (KEYDEBUG_IPSEC | KEYDEBUG_DUMP)
 
 #if 0
-#define KEYDEBUG(lev,arg) \
+#define KEYDEBUG(lev, arg) \
        do { if ((key_debug_level & (lev)) == (lev)) { arg; } } while (0)
 #else
-#define KEYDEBUG(lev,arg)
+#define KEYDEBUG(lev, arg)
 #endif
 
 struct sadb_msg;
@@ -64,7 +64,7 @@ struct sadb_ext;
 extern void kdebug_sadb(struct sadb_msg *);
 extern void kdebug_sadb_x_policy(struct sadb_ext *);
 
-#ifdef KERNEL
+#ifdef BSD_KERNEL_PRIVATE
 extern u_int32_t key_debug_level;
 
 struct secpolicy;
@@ -79,7 +79,7 @@ extern void kdebug_secasindex(struct secasindex *);
 extern void kdebug_secasv(struct secasvar *);
 extern void kdebug_mbufhdr(struct mbuf *);
 extern void kdebug_mbuf(struct mbuf *);
-#endif KERNEL
+#endif /* BSD_KERNEL_PRIVATE */
 
 struct sockaddr;
 extern void kdebug_sockaddr(struct sockaddr *);
@@ -89,4 +89,3 @@ extern void ipsec_bindump(caddr_t, int);
 
 
 #endif /* _NETKEY_KEY_DEBUG_H_ */
-