diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-02-26 09:53:59 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2004-02-26 09:53:59 +0000 |
commit | 245b0768e51d19cb3169231639923a415685018e (patch) | |
tree | 5276c062101c059cbc98ac6697c821ad93fbbf26 /usr.sbin/bgpd/bgpd.h | |
parent | fcec2f54ae37c4320378b7e1da683d10998ab3c5 (diff) |
Add per netwok definition filter sets. So you can now use
network 10.0.0.0/8 set localpref 100
OK henning@
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index 9a43575cc1c..801c649948b 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.98 2004/02/24 15:43:03 claudio Exp $ */ +/* $OpenBSD: bgpd.h,v 1.99 2004/02/26 09:53:58 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -157,6 +157,7 @@ struct peer_config { struct network_config { struct bgpd_addr prefix; u_int8_t prefixlen; + struct filter_set attrset; }; TAILQ_HEAD(network_head, network); |