diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-06-25 19:24:38 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-06-25 19:24:38 +0000 |
commit | d51a03bfa5a2b1b063be66740d7d0857b7f54586 (patch) | |
tree | dbe768c9130a6b971666aa8c8c355953af38778a /usr.sbin | |
parent | e31854e5db2ad750adaf796a5d74de1f2d95706a (diff) |
name2id prototypes
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index be53391827d..ac6c400cd88 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.169 2005/06/24 14:01:52 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.170 2005/06/25 19:24:37 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -698,4 +698,10 @@ int pftable_addr_add(struct pftable_msg *); int pftable_addr_remove(struct pftable_msg *); int pftable_commit(void); +/* name2id.c */ +u_int16_t rtlabel_name2id(char *); +const char *rtlabel_id2name(u_int16_t); +void rtlabel_unref(u_int16_t); + + #endif /* __BGPD_H__ */ |