diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-02 06:31:23 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-02 06:31:23 +0000 |
commit | bca265bb9f5518313f60b3b969aab23edc86c814 (patch) | |
tree | db011f3e395f4eba0cb39d10c89cb25758996fda /sbin | |
parent | 6f20f7cf52dc80782fbd7f735f624d56d24b9022 (diff) |
Merge with EOM 1.52
author: ho
New flag
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/sa.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/isakmpd/sa.h b/sbin/isakmpd/sa.h index 3bd699cb4a7..ffb30cea15a 100644 --- a/sbin/isakmpd/sa.h +++ b/sbin/isakmpd/sa.h @@ -1,5 +1,5 @@ -/* $OpenBSD: sa.h,v 1.12 1999/04/27 20:59:47 niklas Exp $ */ -/* $EOM: sa.h,v 1.51 1999/04/27 09:42:30 niklas Exp $ */ +/* $OpenBSD: sa.h,v 1.13 1999/06/02 06:31:22 niklas Exp $ */ +/* $EOM: sa.h,v 1.52 1999/05/29 15:11:07 ho Exp $ */ /* * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved. @@ -160,6 +160,9 @@ struct sa { /* This SA has seen a soft timeout and wants to be renegotiated on use. */ #define SA_FLAG_FADING 0x10 +/* This SA should always be actively renegotiated (with us as initiator). */ +#define SA_FLAG_ACTIVE_ONLY 0x20 + extern void proto_free (struct proto *proto); extern int sa_add_transform (struct sa *, struct payload *, int, struct proto **); |