diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-03-19 18:46:56 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-03-19 18:46:56 +0100 |
commit | 5d53b80770b4927b5a8205ee0e57f80454b0abf5 (patch) | |
tree | 416fba8870025e456be35ba0cd980dff6345c1a1 /nest/config.Y | |
parent | 0aad2b9292f8e5ff32d048378faf80d2d0bfbb80 (diff) | |
download | bird-5d53b80770b4927b5a8205ee0e57f80454b0abf5.tar bird-5d53b80770b4927b5a8205ee0e57f80454b0abf5.zip |
Allow iface pattern matching code to match peer address on ptp links.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/config.Y b/nest/config.Y index 792012e..7bb0525 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -181,8 +181,8 @@ iface_patt_node_init: iface_patt_node_body: TEXT { this_ipn->pattern = $1; this_ipn->prefix = IPA_NONE; this_ipn->pxlen = 0; } - | prefix { this_ipn->pattern = NULL; this_ipn->prefix = $1.addr; this_ipn->pxlen = $1.len; } - | TEXT prefix { this_ipn->pattern = $1; this_ipn->prefix = $2.addr; this_ipn->pxlen = $2.len; } + | prefix_or_ipa { this_ipn->pattern = NULL; this_ipn->prefix = $1.addr; this_ipn->pxlen = $1.len; } + | TEXT prefix_or_ipa { this_ipn->pattern = $1; this_ipn->prefix = $2.addr; this_ipn->pxlen = $2.len; } ; iface_negate: |