diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-02 06:32:24 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-02 06:32:24 +0000 |
commit | 53a335c95846fa5c69305acde6936607359e736b (patch) | |
tree | bc66b4ab43bec2352da04df810e3f50ea36c719c /sbin | |
parent | a34e8f7a7ac6304e361c15dfd806039ece3ba100 (diff) |
Merge with EOM 1.4
author: ho
Expand the passive connection mechanism.
author: niklas
Some more #if 0 stuff for passive connections
author: ho
Add connections_report and connection_reinit
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/connection.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sbin/isakmpd/connection.h b/sbin/isakmpd/connection.h index adefe87a5ea..fd478ae9af9 100644 --- a/sbin/isakmpd/connection.h +++ b/sbin/isakmpd/connection.h @@ -1,5 +1,5 @@ -/* $OpenBSD: connection.h,v 1.1 1999/05/02 05:52:48 niklas Exp $ */ -/* $EOM: connection.h,v 1.1 1999/05/01 20:21:09 niklas Exp $ */ +/* $OpenBSD: connection.h,v 1.2 1999/06/02 06:32:23 niklas Exp $ */ +/* $EOM: connection.h,v 1.4 1999/05/28 13:53:22 ho Exp $ */ /* * Copyright (c) 1999 Niklas Hallqvist. All rights reserved. @@ -41,8 +41,14 @@ #ifndef _CONNECTION_H_ #define _CONNECTION_H_ +#include <sys/types.h> + extern void connection_init (void); +extern char *connection_passive_lookup_by_ids (u_int8_t *, u_int8_t *); +extern void connection_reinit (void); +extern void connection_report (void); extern int connection_setup (char *); +extern int connection_record_passive (char *); extern void connection_teardown (char *); #endif /* _CONNECTION_H_ */ |