summaryrefslogtreecommitdiffstats
path: root/src/config.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.l')
-rw-r--r--src/config.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l
index 54d3447..231f228 100644
--- a/src/config.l
+++ b/src/config.l
@@ -23,6 +23,7 @@ peer { yylval->str = yytext; return TOK_PEER; }
address { yylval->str = yytext; return TOK_ADDRESS; }
secret { yylval->str = yytext; return TOK_SECRET; }
key { yylval->str = yytext; return TOK_KEY; }
+include { yylval->str = yytext; return TOK_INCLUDE; }
[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3} {
if (!inet_pton(AF_INET, yytext, &yylval->addr)) {