diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-05 00:50:57 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-05-05 00:50:57 +0000 |
commit | 83a6c0cd0eaaaf4a7b34136881ae5d54f5900c2b (patch) | |
tree | 5f49f23a8f5712ad3da584f59e6ae225cd1d0a91 /sbin | |
parent | ebdfc749736d307ec24fd1ac74296c887bbbf9c7 (diff) |
Change the set_spi prototype so that it gets the Phase 1 SA passed as well.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/sysdep.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/isakmpd/sysdep.h b/sbin/isakmpd/sysdep.h index 8ca48cf2d7b..54ac3cadbb2 100644 --- a/sbin/isakmpd/sysdep.h +++ b/sbin/isakmpd/sysdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysdep.h,v 1.9 2001/02/24 03:59:56 angelos Exp $ */ +/* $OpenBSD: sysdep.h,v 1.10 2001/05/05 00:50:56 angelos Exp $ */ /* $EOM: sysdep.h,v 1.17 2000/12/04 04:46:35 angelos Exp $ */ /* @@ -55,7 +55,8 @@ extern u_int8_t *sysdep_ipsec_get_spi (size_t *, u_int8_t, struct sockaddr *, int, struct sockaddr *, int, u_int32_t); extern int sysdep_ipsec_group_spis (struct sa *, struct proto *, struct proto *, int); -extern int sysdep_ipsec_set_spi (struct sa *, struct proto *, int); +extern int sysdep_ipsec_set_spi (struct sa *, struct proto *, int, + struct sa *); extern char *sysdep_progname (void); extern u_int32_t sysdep_random (void); |