diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:52:01 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:52:01 +0000 |
commit | 4a886f202b8373adb4a33f166efe268272027363 (patch) | |
tree | ee12290dc232add8f3c247ae718516470f858b02 /sbin/isakmpd | |
parent | 817206db8e43e134ba6c489f8cec05788ae8c278 (diff) |
Merge from the Ericsson repository
| revision 1.11
| date: 1999/02/14 00:15:16; author: niklas; state: Exp; lines: +2 -2
| New fd_set API which may clear a bit. Use it for doing proper message
| send queue runs, as reported by Ilya Tsindlekht. Better style.
| ----------------------------
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/transport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/transport.h b/sbin/isakmpd/transport.h index 512469a4288..61dbd5c1870 100644 --- a/sbin/isakmpd/transport.h +++ b/sbin/isakmpd/transport.h @@ -1,5 +1,5 @@ -/* $OpenBSD: transport.h,v 1.3 1998/11/17 11:10:21 niklas Exp $ */ -/* $EOM: transport.h,v 1.10 1998/10/11 20:25:10 niklas Exp $ */ +/* $OpenBSD: transport.h,v 1.4 1999/02/26 03:52:00 niklas Exp $ */ +/* $EOM: transport.h,v 1.11 1999/02/14 00:15:16 niklas Exp $ */ /* * Copyright (c) 1998 Niklas Hallqvist. All rights reserved. @@ -62,7 +62,7 @@ struct transport_vtbl { struct transport *(*create) (char *); /* Let the given transport set it's bit in the fd_set passed in. */ - int (*fd_set) (struct transport *, fd_set *); + int (*fd_set) (struct transport *, fd_set *, int); /* Is the given transport ready for I/O? */ int (*fd_isset) (struct transport *, fd_set *); |