diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-06-06 17:13:57 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-06-06 17:13:57 +0000 |
commit | cbaf44da3b32495f202def87c3a418f9d49905c2 (patch) | |
tree | 1e6bcda421f7363453bfcc9e5e9f26985849b04f /usr.sbin/bgpctl/parser.h | |
parent | 17f116c53e1d9f54d357ac1b02356d8c044ce112 (diff) |
add support for a "family" token, allows to select address families
Diffstat (limited to 'usr.sbin/bgpctl/parser.h')
-rw-r--r-- | usr.sbin/bgpctl/parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/parser.h b/usr.sbin/bgpctl/parser.h index 87b0aab439a..043eebea9a1 100644 --- a/usr.sbin/bgpctl/parser.h +++ b/usr.sbin/bgpctl/parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.h,v 1.8 2005/05/23 20:09:00 claudio Exp $ */ +/* $OpenBSD: parser.h,v 1.9 2005/06/06 17:13:56 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -52,6 +52,7 @@ struct parse_result { int flags; u_int8_t prefixlen; struct filter_set_head set; + sa_family_t af; }; struct parse_result *parse(int, char *[]); |