diff options
author | 2001-08-11 05:29:23 +0000 | |
---|---|---|
committer | 2001-08-11 05:29:23 +0000 | |
commit | 2c18fa19cbf54c0223eb7ad33f9bb9342cc036f6 (patch) | |
tree | f9149e41035dc1c255a74df575f67ed0c159e4d0 | |
parent | Fix keynote credential case again. (diff) | |
download | wireguard-openbsd-2c18fa19cbf54c0223eb7ad33f9bb9342cc036f6.tar.xz wireguard-openbsd-2c18fa19cbf54c0223eb7ad33f9bb9342cc036f6.zip |
Add TRANSPORT_MARK, for mark-and-sweep garbage collection of transport
instances.
-rw-r--r-- | sbin/isakmpd/transport.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/isakmpd/transport.h b/sbin/isakmpd/transport.h index eede865606d..54a891b9feb 100644 --- a/sbin/isakmpd/transport.h +++ b/sbin/isakmpd/transport.h @@ -1,4 +1,4 @@ -/* $OpenBSD: transport.h,v 1.8 2001/06/29 18:52:17 ho Exp $ */ +/* $OpenBSD: transport.h,v 1.9 2001/08/11 05:29:23 angelos Exp $ */ /* $EOM: transport.h,v 1.16 2000/07/17 18:57:59 provos Exp $ */ /* @@ -119,6 +119,8 @@ struct transport { /* Set if this is a transport we want to listen on. */ #define TRANSPORT_LISTEN 1 +/* Used for mark-and-sweep-type garbage collection of transports */ +#define TRANSPORT_MARK 2 extern void transport_add (struct transport *); extern struct transport *transport_create (char *, char *); |