|
@@ -418,6 +418,7 @@ TCP_OPT_KEEPIDLE "tcp_keepidle"
|
|
TCP_OPT_KEEPINTVL "tcp_keepintvl"
|
|
TCP_OPT_KEEPINTVL "tcp_keepintvl"
|
|
TCP_OPT_KEEPCNT "tcp_keepcnt"
|
|
TCP_OPT_KEEPCNT "tcp_keepcnt"
|
|
TCP_OPT_CRLF_PING "tcp_crlf_ping"
|
|
TCP_OPT_CRLF_PING "tcp_crlf_ping"
|
|
|
|
+TCP_OPT_ACCEPT_NO_CL "tcp_accept_no_cl"
|
|
DISABLE_TLS "disable_tls"|"tls_disable"
|
|
DISABLE_TLS "disable_tls"|"tls_disable"
|
|
ENABLE_TLS "enable_tls"|"tls_enable"
|
|
ENABLE_TLS "enable_tls"|"tls_enable"
|
|
TLSLOG "tlslog"|"tls_log"
|
|
TLSLOG "tlslog"|"tls_log"
|
|
@@ -792,6 +793,8 @@ SUBST subst
|
|
return TCP_OPT_KEEPCNT; }
|
|
return TCP_OPT_KEEPCNT; }
|
|
<INITIAL>{TCP_OPT_CRLF_PING} { count(); yylval.strval=yytext;
|
|
<INITIAL>{TCP_OPT_CRLF_PING} { count(); yylval.strval=yytext;
|
|
return TCP_OPT_CRLF_PING; }
|
|
return TCP_OPT_CRLF_PING; }
|
|
|
|
+<INITIAL>{TCP_OPT_ACCEPT_NO_CL} { count(); yylval.strval=yytext;
|
|
|
|
+ return TCP_OPT_ACCEPT_NO_CL; }
|
|
<INITIAL>{DISABLE_TLS} { count(); yylval.strval=yytext; return DISABLE_TLS; }
|
|
<INITIAL>{DISABLE_TLS} { count(); yylval.strval=yytext; return DISABLE_TLS; }
|
|
<INITIAL>{ENABLE_TLS} { count(); yylval.strval=yytext; return ENABLE_TLS; }
|
|
<INITIAL>{ENABLE_TLS} { count(); yylval.strval=yytext; return ENABLE_TLS; }
|
|
<INITIAL>{TLSLOG} { count(); yylval.strval=yytext; return TLS_PORT_NO; }
|
|
<INITIAL>{TLSLOG} { count(); yylval.strval=yytext; return TLS_PORT_NO; }
|