diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-27 03:53:10 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-27 03:53:10 +0000 |
commit | b9359c3f1fd3229e4be901dd1350daabb2f1025d (patch) | |
tree | e95c4b179a4233af45eeb309324fef8b36ce7297 | |
parent | 8709f092bafeaca519da30c3f26abcd78e80faa1 (diff) |
Keep local authentication material on the PCB.
-rw-r--r-- | sys/netinet/in_pcb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index 88722c0e453..7c5f87d24e6 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in_pcb.h,v 1.34 2001/05/21 03:02:18 angelos Exp $ */ +/* $OpenBSD: in_pcb.h,v 1.35 2001/05/27 03:53:09 angelos Exp $ */ /* $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $ */ /* @@ -137,6 +137,7 @@ struct inpcb { struct ipsec_ref *inp_ipsec_remoteid; struct ipsec_ref *inp_ipsec_localcred; struct ipsec_ref *inp_ipsec_remotecred; + struct ipsec_ref *inp_ipsec_auth; #define inp_flowinfo inp_hu.hu_ipv6.ip6_flow int in6p_cksum; |