yacc and lex.

git-svn-id: file:///svn/unbound/trunk@4837 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2018-08-07 12:02:10 +00:00
parent 6e4583a528
commit b97b04a9db
3 changed files with 2821 additions and 2786 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -288,7 +288,8 @@ extern int yydebug;
VAR_LOW_RTT = 498,
VAR_LOW_RTT_PERMIL = 499,
VAR_ALLOW_NOTIFY = 500,
VAR_TLS_WIN_CERT = 501
VAR_TLS_WIN_CERT = 501,
VAR_TCP_CONNECTION_LIMIT = 502
};
#endif
/* Tokens. */
@ -536,6 +537,7 @@ extern int yydebug;
#define VAR_LOW_RTT_PERMIL 499
#define VAR_ALLOW_NOTIFY 500
#define VAR_TLS_WIN_CERT 501
#define VAR_TCP_CONNECTION_LIMIT 502
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
@ -546,7 +548,7 @@ union YYSTYPE
char* str;
#line 550 "util/configparser.h" /* yacc.c:1909 */
#line 552 "util/configparser.h" /* yacc.c:1909 */
};
typedef union YYSTYPE YYSTYPE;