diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-09 22:31:08 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-09 22:31:08 +0000 |
commit | 479c7f20fc59cd64f3fd7fd0c7f1bb74d3c4db78 (patch) | |
tree | 36f0138f85be328285e1032bb3e093cf1b7368fb /sys | |
parent | 4d3ec5cd1fb92df4bae8a132fb5e619cb2487475 (diff) |
externalize ipsec_acl
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_ipsp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index d8476e3ee1d..823559d67ff 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.52 1999/12/29 20:27:55 mickey Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.53 2000/01/09 22:31:07 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -319,7 +319,8 @@ struct tdb /* tunnel descriptor block */ u_int16_t tdb_dstid_type; caddr_t tdb_interface; - struct flow *tdb_flow; /* Which flows use this SA */ + struct flow *tdb_flow; /* Which outboind flows use this SA */ + struct flow *tdb_access; /* Ingress access control */ struct tdb *tdb_bind_out; /* Outgoing SA to use */ TAILQ_HEAD(tdb_bind_head, tdb) tdb_bind_in; @@ -437,6 +438,7 @@ htonq(u_int64_t q) #define spltdb splsoftnet extern int encdebug; +extern int ipsec_acl; extern int ipsec_in_use; extern u_int8_t hmac_ipad_buffer[64]; extern u_int8_t hmac_opad_buffer[64]; |