diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-10-12 23:31:42 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-10-12 23:31:42 +0200 |
commit | 4cdd078453d585ac97a183ea1f3951d85f1b8784 (patch) | |
tree | 0379c01489f48ac7686d9c1cfdb139add00f6c05 /nest/config.Y | |
parent | 52b9b2a1786140c38af03de570b0cc96c835c1d3 (diff) |
Implements protocol-specific router id and updates documentation.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nest/config.Y b/nest/config.Y index a2c44ab7..4721112a 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -140,6 +140,7 @@ proto_item: | IMPORT imexport { this_proto->in_filter = $2; } | EXPORT imexport { this_proto->out_filter = $2; } | TABLE rtable { this_proto->table = $2; } + | ROUTER ID idval { this_proto->router_id = $3; } ; imexport: |