diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2004-05-13 06:56:35 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2004-05-13 06:56:35 +0000 |
commit | ef40255aa9064762cdd72306c3bb0dae723f76d0 (patch) | |
tree | 93c09768849271e3586b9c4ff521eeb9eda61a4c /sbin/isakmpd/sa.h | |
parent | eb9ae5bf720298197b3a7d0a493749a79901eef2 (diff) |
Extensions to the FIFO interface:
"C get [section]:tag" fetches a configuration value.
"C add [section]:tag=value" adds 'value' to a list, typically for the
[Phase 2]:Connections tag. FIFO "S" command destination file changed.
Various KNF cleanups. hshoexer@ ok.
Diffstat (limited to 'sbin/isakmpd/sa.h')
-rw-r--r-- | sbin/isakmpd/sa.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sbin/isakmpd/sa.h b/sbin/isakmpd/sa.h index f7071755185..0bdd97d9c73 100644 --- a/sbin/isakmpd/sa.h +++ b/sbin/isakmpd/sa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sa.h,v 1.35 2004/04/15 18:39:26 deraadt Exp $ */ +/* $OpenBSD: sa.h,v 1.36 2004/05/13 06:56:34 ho Exp $ */ /* $EOM: sa.h,v 1.58 2000/10/10 12:39:01 provos Exp $ */ /* @@ -225,9 +225,6 @@ struct sa { /* This SA flag is a placeholder for a TRANSACTION exchange "SA flag". */ #define SA_FLAG_IKECFG 0x40 -/* Outfile for detailed SA information. */ -#define SA_FILE "/var/run/isakmpd_sa" - extern void proto_free(struct proto * proto); extern int sa_add_transform(struct sa *, struct payload *, int, @@ -255,6 +252,6 @@ extern void sa_release(struct sa *); extern void sa_remove(struct sa *); extern void sa_report(void); extern void sa_dump(int, int, char *, struct sa *); -extern void sa_report_all(void); +extern void sa_report_all(FILE *); extern int sa_setup_expirations(struct sa *); #endif /* _SA_H_ */ |