diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2013-10-09 08:56:39 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2013-10-09 08:56:39 +0000 |
commit | 9f4f20c00ffc4f80c95fb22a99b0497b4231e133 (patch) | |
tree | 0fc627adc179e98a6dbfefb32abda66a14836e4c /usr.sbin/bgpctl/parser.h | |
parent | c7dbb94dc7cfdd7caa45efd11daed1377b5c8a3b (diff) |
Allow us to bulk add / delete routes with the same attributes. Really
useful for distributing IP lists.
OK beck@, claudio@, henning@
Diffstat (limited to 'usr.sbin/bgpctl/parser.h')
-rw-r--r-- | usr.sbin/bgpctl/parser.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/parser.h b/usr.sbin/bgpctl/parser.h index 80c1e37b9c8..fd298fda7bc 100644 --- a/usr.sbin/bgpctl/parser.h +++ b/usr.sbin/bgpctl/parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.h,v 1.25 2013/03/07 21:28:34 claudio Exp $ */ +/* $OpenBSD: parser.h,v 1.26 2013/10/09 08:56:38 phessler Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -52,7 +52,9 @@ enum actions { NETWORK_FLUSH, NETWORK_SHOW, NETWORK_MRT, - IRRFILTER + IRRFILTER, + NETWORK_BULK_ADD, + NETWORK_BULK_REMOVE }; struct parse_result { |