diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2006-03-31 13:13:52 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2006-03-31 13:13:52 +0000 |
commit | b4080d65a209c2f93532e62b09803ecdcc96ddf5 (patch) | |
tree | 56bdbd6c919d900516f3e778873041969e97f3be /sbin/ipsecctl/ipsecctl.h | |
parent | bf2b4bd8eedf281cb823398d10395d46d97bd165 (diff) |
allow specification of encapsulated protocol for flows; ok hshoexer
Diffstat (limited to 'sbin/ipsecctl/ipsecctl.h')
-rw-r--r-- | sbin/ipsecctl/ipsecctl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/ipsecctl/ipsecctl.h b/sbin/ipsecctl/ipsecctl.h index 4854a95453e..1738fe719a5 100644 --- a/sbin/ipsecctl/ipsecctl.h +++ b/sbin/ipsecctl/ipsecctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsecctl.h,v 1.30 2006/03/30 12:44:20 markus Exp $ */ +/* $OpenBSD: ipsecctl.h,v 1.31 2006/03/31 13:13:51 markus Exp $ */ /* * Copyright (c) 2004, 2005 Hans-Joerg Hoexer <hshoexer@openbsd.org> * @@ -144,7 +144,8 @@ struct ipsec_rule { struct ipsec_key *authkey; struct ipsec_key *enckey; - u_int8_t proto; + u_int8_t satype; /* encapsulating prococol */ + u_int8_t proto; /* encapsulated protocol */ u_int8_t tmode; u_int8_t direction; u_int8_t flowtype; |