diff options
author | 2005-06-25 19:24:37 +0000 | |
---|---|---|
committer | 2005-06-25 19:24:37 +0000 | |
commit | 7b390abfb3272df7b81909a4c561cbee41cf7eef (patch) | |
tree | c54257c3763f030bf8bff1292a00235847b53872 | |
parent | Fix typo in a comment. (diff) | |
download | wireguard-openbsd-7b390abfb3272df7b81909a4c561cbee41cf7eef.tar.xz wireguard-openbsd-7b390abfb3272df7b81909a4c561cbee41cf7eef.zip |
name2id prototypes
-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__ */ |