diff options
Diffstat (limited to 'src/conf_parser.y')
-rw-r--r-- | src/conf_parser.y | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/conf_parser.y b/src/conf_parser.y index 0ebbd51..ef4285f 100644 --- a/src/conf_parser.y +++ b/src/conf_parser.y @@ -984,6 +984,14 @@ logging_file_type_item: USER { if (conf_parser_ctx.pass == 2) block_state.type.value = LOG_TYPE_GLINE; +} | XLINE +{ + if (conf_parser_ctx.pass == 2) + block_state.type.value = LOG_TYPE_XLINE; +} | RESV +{ + if (conf_parser_ctx.pass == 2) + block_state.type.value = LOG_TYPE_RESV; } | T_DLINE { if (conf_parser_ctx.pass == 2) |