diff options
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index 963a05b..4f7dd7f 100644 --- a/src/config.l +++ b/src/config.l @@ -80,6 +80,9 @@ peers { UPDATE_LOCATION; return TOK_PEERS; } from { UPDATE_LOCATION; return TOK_FROM; } log { UPDATE_LOCATION; return TOK_LOG; } level { UPDATE_LOCATION; return TOK_LEVEL; } +syslog { UPDATE_LOCATION; return TOK_SYSLOG; } +stderr { UPDATE_LOCATION; return TOK_STDERR; } +to { UPDATE_LOCATION; return TOK_TO; } fatal { UPDATE_LOCATION; return TOK_FATAL; } error { UPDATE_LOCATION; return TOK_ERROR; } warn { UPDATE_LOCATION; return TOK_WARN; } |