diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-05 22:41:32 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-05 22:41:32 +0000 |
commit | f913e84966bf9ef5d334c266f6038696cb74627b (patch) | |
tree | 2f555faba23b812c5dba662daeb4f0db82838d55 /sbin/isakmpd | |
parent | 97495d3bbba04605cf351d6acbc7811e472c03fe (diff) |
Merge with EOM 1.38
author: niklas
Fix no ID in QM, when acting as responder, bug
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/ipsec.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/isakmpd/ipsec.h b/sbin/isakmpd/ipsec.h index 59b18435919..89f70fd17bd 100644 --- a/sbin/isakmpd/ipsec.h +++ b/sbin/isakmpd/ipsec.h @@ -1,5 +1,5 @@ -/* $OpenBSD: ipsec.h,v 1.10 1999/07/07 22:13:08 niklas Exp $ */ -/* $EOM: ipsec.h,v 1.37 1999/06/10 13:34:58 niklas Exp $ */ +/* $OpenBSD: ipsec.h,v 1.11 1999/08/05 22:41:31 niklas Exp $ */ +/* $EOM: ipsec.h,v 1.38 1999/07/25 09:12:36 niklas Exp $ */ /* * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved. @@ -54,6 +54,7 @@ struct sa; * for phase 2 parameters. */ struct ipsec_exch { + u_int flags; struct hash *hash; struct ike_auth *ike_auth; struct group *group; @@ -93,6 +94,8 @@ struct ipsec_exch { size_t id_cr_sz; }; +#define IPSEC_EXCH_FLAG_NO_ID 1 + struct ipsec_sa { /* Phase 1. */ u_int8_t hash; |