summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bgpctl/parser.h
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2005-06-06 17:13:56 +0000
committerhenning <henning@openbsd.org>2005-06-06 17:13:56 +0000
commitc41f8a59e0186f37aebddc7cc84fe23eab16f0fb (patch)
tree41acde3463da39c06efadba27161d4b178e95028 /usr.sbin/bgpctl/parser.h
parentslight reshuffle to make this less confusing; (diff)
downloadwireguard-openbsd-c41f8a59e0186f37aebddc7cc84fe23eab16f0fb.tar.xz
wireguard-openbsd-c41f8a59e0186f37aebddc7cc84fe23eab16f0fb.zip
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.h3
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 *[]);