mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-25 17:19:42 -05:00
yacc and lex.
git-svn-id: file:///svn/unbound/trunk@4837 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
6e4583a528
commit
b97b04a9db
3 changed files with 2821 additions and 2786 deletions
3534
util/configlexer.c
3534
util/configlexer.c
File diff suppressed because it is too large
Load diff
2067
util/configparser.c
2067
util/configparser.c
File diff suppressed because it is too large
Load diff
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue