diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-12-07 22:19:40 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-12-07 22:19:40 +0100 |
commit | 61dae32b29cc57b9884a1c13e5d630096e157a38 (patch) | |
tree | 290fb9c54661a12cf8cc179cd35128940f159f43 /proto/pipe | |
parent | 8cc5bb09e344038a1f8dff96946e05ec80607c93 (diff) |
Nest: Per-channel debug flags
The patch add support for per-channel debug flags, currently just
'states', 'routes', and 'filters'. Flag 'states' is used for channel
state changes, remaining two for routes passed through the channel.
The per-protocol debug flags 'routes'/'filters' still enable reporting
of routes for all channels, to keep existing behavior.
The patch causes minor changes in some log messages.
Diffstat (limited to 'proto/pipe')
-rw-r--r-- | proto/pipe/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/pipe/config.Y b/proto/pipe/config.Y index 18e1d0fc..1202c169 100644 --- a/proto/pipe/config.Y +++ b/proto/pipe/config.Y @@ -39,7 +39,7 @@ proto_name pipe_proto: pipe_proto_start '{' | pipe_proto proto_item ';' - | pipe_proto channel_item ';' + | pipe_proto channel_item_ ';' | pipe_proto PEER TABLE rtable ';' { PIPE_CFG->peer = $4; } ; |