diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-02-17 12:07:46 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-02-17 12:07:46 +0000 |
commit | d0031e7cc36a4c279a48e08f99959b3c999f87fa (patch) | |
tree | 85fc7f7faee8e235d8f78b3ed60bf7a80f79459e /sys/netinet/ip_ah.h | |
parent | 34fae67660d6f74ab6614e42aa78d4cc5f76f607 (diff) |
switch to sysctl_int_arr(); ok henning, deraadt
Diffstat (limited to 'sys/netinet/ip_ah.h')
-rw-r--r-- | sys/netinet/ip_ah.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/netinet/ip_ah.h b/sys/netinet/ip_ah.h index 91c1eba52cd..2ec742dfe11 100644 --- a/sys/netinet/ip_ah.h +++ b/sys/netinet/ip_ah.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ah.h,v 1.30 2003/02/12 14:41:07 jason Exp $ */ +/* $OpenBSD: ip_ah.h,v 1.31 2004/02/17 12:07:45 markus Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -86,6 +86,11 @@ struct ah { "enable", CTLTYPE_INT }, \ } +#define AHCTL_VARS { \ + NULL, \ + &ah_enable, \ +} + #ifdef _KERNEL extern int ah_enable; extern struct ahstat ahstat; |