diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:50:39 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:50:39 +0000 |
commit | b8cb62ebc35c4febdfa7fc6c6d2212ce5294a408 (patch) | |
tree | a4c0067472ec7858e48428dd8255e126a2676c6f /sbin/isakmpd/sysdep.h | |
parent | 3d59cd1cd8898e2072ed9c2405edd84d1c92e61b (diff) |
Merge from the Ericsson repository
| revision 1.13
| date: 1999/02/25 11:21:55; author: niklas; state: Exp; lines: +3 -1
| sysdep-os.h addition
| ----------------------------
| revision 1.12
| date: 1999/01/31 01:24:53; author: niklas; state: Exp; lines: +3 -2
| on-demand keying
| ----------------------------
Diffstat (limited to 'sbin/isakmpd/sysdep.h')
-rw-r--r-- | sbin/isakmpd/sysdep.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sbin/isakmpd/sysdep.h b/sbin/isakmpd/sysdep.h index a537a5409c8..084b34324a5 100644 --- a/sbin/isakmpd/sysdep.h +++ b/sbin/isakmpd/sysdep.h @@ -1,5 +1,5 @@ -/* $OpenBSD: sysdep.h,v 1.3 1998/11/17 11:10:20 niklas Exp $ */ -/* $EOM: sysdep.h,v 1.11 1998/10/12 22:15:15 niklas Exp $ */ +/* $OpenBSD: sysdep.h,v 1.4 1999/02/26 03:50:38 niklas Exp $ */ +/* $EOM: sysdep.h,v 1.13 1999/02/25 11:21:55 niklas Exp $ */ /* * Copyright (c) 1998 Niklas Hallqvist. All rights reserved. @@ -39,14 +39,17 @@ #include <sys/types.h> +#include "sysdep-os.h" + struct proto; struct sa; extern void sysdep_app_handler (int); extern int sysdep_app_open (void); +extern void sysdep_conf_init_hook (void); extern int sysdep_cleartext (int); extern int sysdep_ipsec_delete_spi (struct sa *, struct proto *, int); -extern int sysdep_ipsec_enable_spi (struct sa *, int); +extern int sysdep_ipsec_enable_sa (struct sa *, int); extern u_int8_t *sysdep_ipsec_get_spi (size_t *, u_int8_t, void *, size_t); extern int sysdep_ipsec_group_spis (struct sa *, struct proto *, struct proto *, int); |