diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-12-24 04:18:06 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-12-24 04:18:06 +0000 |
commit | 08fd2581b42b56932400e71ac0ad9d5123195a18 (patch) | |
tree | c0197d8385d5b4107be59e7e6849e50efba5a240 /sys/netinet/ip_ipsp.h | |
parent | b1044a070b87b20a73f593b1087fae3a062d5920 (diff) |
Extra argument in the function to tdb_walk(), indicating last TDB.
Diffstat (limited to 'sys/netinet/ip_ipsp.h')
-rw-r--r-- | sys/netinet/ip_ipsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index 48c15b275bd..ca65f9dcc46 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.74 2000/10/14 06:23:52 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.75 2000/12/24 04:18:04 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -480,7 +480,7 @@ extern void tdb_expiration(struct tdb *, int); /* Flag values for the last argument of tdb_expiration(). */ #define TDBEXP_EARLY 1 /* The tdb is likely to end up early. */ #define TDBEXP_TIMEOUT 2 /* Maintain expiration timeout. */ -extern int tdb_walk(int (*)(struct tdb *, void *), void *); +extern int tdb_walk(int (*)(struct tdb *, void *, int), void *); extern void handle_expirations(void *); /* XF_IP4 */ |