diff options
author | Hristo Venev <hristo@venev.name> | 2020-02-04 23:52:59 +0100 |
---|---|---|
committer | Hristo Venev <hristo@venev.name> | 2020-02-04 23:52:59 +0100 |
commit | ca4eddd56712a5b7984395601b63dd79e7a8abd6 (patch) | |
tree | 1d37d54a6cc8ade714c6a246b6ea952dc5ffec1c /src/main.rs | |
parent | 3744b8d130788f8b56d8eb6763586e89eb9a0647 (diff) |
Add source.allow_road_warriors option.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 2ab02af..5cdaa40 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,6 +60,14 @@ fn cli_config(mut args: impl Iterator<Item = OsString>) -> Option<config::Config s.required = true; continue; } + if key == "deny_road_warriors" { + s.allow_road_warriors = false; + continue; + } + if key == "allow_road_warriors" { + s.allow_road_warriors = true; + continue; + } } State::Peer(ref mut p) => { if key == "source" { @@ -116,6 +124,7 @@ fn cli_config(mut args: impl Iterator<Item = OsString>) -> Option<config::Config ipv4: model::Ipv4Set::new(), ipv6: model::Ipv6Set::new(), required: false, + allow_road_warriors: true, }); cur = State::Source(cfg.sources.last_mut().unwrap()); continue; |