diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-04-24 20:18:04 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-04-24 20:18:04 +0000 |
commit | 28100580167e3898a45606af96841eb236ff97ce (patch) | |
tree | 94b12234ce5a299ef3d35513536efe47aacc6015 /usr.sbin/ospfd/ospfe.h | |
parent | b073eac299215a2c87e8bd2b3d24727678ae6010 (diff) |
Fix parser to match current behaviour and make auth-type et al. part of the
global and per area defaults. With this it is now possible to define one
set of auth-md keys and use them in every defined interface. OK norby@
Diffstat (limited to 'usr.sbin/ospfd/ospfe.h')
-rw-r--r-- | usr.sbin/ospfd/ospfe.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.sbin/ospfd/ospfe.h b/usr.sbin/ospfd/ospfe.h index 96a072506c7..4f01ee52dd6 100644 --- a/usr.sbin/ospfd/ospfe.h +++ b/usr.sbin/ospfd/ospfe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.h,v 1.27 2006/03/13 09:36:06 claudio Exp $ */ +/* $OpenBSD: ospfe.h,v 1.28 2006/04/24 20:18:03 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -97,10 +97,9 @@ struct nbr { int auth_validate(void *buf, u_int16_t len, struct iface *, struct nbr *); int auth_gen(struct buf *, struct iface *); -void md_list_init(struct iface *); -void md_list_add(struct iface *, u_int8_t, char *); -void md_list_clr(struct iface *); -struct auth_md *md_list_find(struct iface *, u_int8_t); +void md_list_add(struct auth_md_head *, u_int8_t, char *); +void md_list_copy(struct auth_md_head *, struct auth_md_head *); +void md_list_clr(struct auth_md_head *); /* database.c */ int send_db_description(struct nbr *); |