Home
last modified time | relevance | path

Searched refs:YY_STR (Results 1 – 7 of 7) sorted by relevance

/trueos/contrib/ipfilter/tools/
HDipscan_y.y63 %token <str> YY_STR
90 gline: YY_STR ':' glist '=' action
98 assign: YY_STR assigning YY_STR
120 glist: YY_STR
121 | glist ',' YY_STR
124 tag: YY_STR { $$ = $1; }
155 '(' YY_STR ')' { $$ = makepair($2, NULL); }
159 '(' YY_STR ',' YY_STR ')' { $$ = makepair($2, $4); }
173 | YY_STR { $$ = gethostip($1);
180 | YY_STR { $$ = getportnum($1);
HDipnat_y.y113 %token <str> YY_STR
165 assign: YY_STR assigning YY_STR ';' { set_variable($1, $3);
417 IPNY_DNS '/' proto IPNY_CONFIG YY_STR '{'
431 IPNY_ALLOW YY_STR { $$ = proxy_dns_add_pass(NULL, $2); }
432 | IPNY_DENY YY_STR { $$ = proxy_dns_add_block(NULL, $2); }
433 | IPNY_ALLOW '.' YY_STR { $$ = proxy_dns_add_pass(".", $3); }
434 | IPNY_DENY '.' YY_STR { $$ = proxy_dns_add_block(".", $3); }
532 proxy: | IPNY_PROXY port portspec YY_STR '/' proto
545 | IPNY_PROXY port YY_STR YY_STR '/' proto
558 | IPNY_PROXY port portspec YY_STR '/' proto IPNY_CONFIG YY_STR
[all …]
HDipmon_y.y63 %token <str> YY_STR
97 | IPM_LOADACTION YY_STR YY_STR { if (install_saver($2, $3))
102 assign: YY_STR assigning YY_STR { set_variable($1, $3);
142 YY_STR { if (find_doing($1) != IPM_DOING)
145 '(' YY_STR ')' { $$ = build_doing($1, $4);
149 | YY_STR { if (find_doing($1) == IPM_DOING)
169 | IPM_DSTPORT '=' YY_STR { $$ = new_opt(IPM_DSTPORT);
185 | IPM_GROUP '=' YY_STR { $$ = new_opt(IPM_GROUP);
190 IPM_INTERFACE '=' YY_STR { $$ = new_opt(IPM_INTERFACE);
198 nattag: IPM_NATTAG '=' YY_STR { $$ = new_opt(IPM_NATTAG);
[all …]
HDippool_y.y77 %token <str> YY_STR
149 assign: YY_STR assigning YY_STR ';' { set_variable($1, $3);
229 | IPT_NAME '=' YY_STR { strncpy(poolname, $3,
239 IPT_GROUP '=' YY_STR { char tmp[FR_GROUPLEN+1];
286 | YY_STR { $$ = add_htablehosts($1);
323 | YY_STR { $$ = add_poolhosts($1);
326 | IPT_WHOIS IPT_FILE YY_STR { $$ = read_whoisfile($3);
348 | YY_STR { $$ = add_htablehosts($1);
506 name: IPT_NAME YY_STR { $$ = $2; }
533 YY_STR ':' ipaddr { int size = sizeof(*$$) + strlen($1) + 1;
HDipf_y.y119 %token <str> YY_STR
203 IPFY_SET YY_STR YY_NUMBER ';' { do_tuneint($2, $3); }
204 | IPFY_SET YY_STR YY_HEX ';' { do_tuneint($2, $3); }
205 | IPFY_SET YY_STR YY_STR ';' { do_tunestr($2, $3); }
227 assign: YY_STR assigning YY_STR ';' { set_variable($1, $3);
303 IPFY_BPFV4 '{' YY_STR '}' { dobpf(4, $3); free($3); }
304 | IPFY_BPFV6 '{' YY_STR '}' { dobpf(6, $3); free($3); }
308 IPFY_IPFEXPR '{' YY_STR '}' { doipfexpr($3); }
362 | IPFY_DECAPS IPFY_L5AS '(' YY_STR ')'
375 func: YY_STR '/' YY_NUMBER
[all …]
HDlexer.c319 rval = YY_STR; in yylex()
555 rval = YY_STR; in yylex()
558 if (rval == YY_STR) { in yylex()
582 case YY_STR : in yylex()
655 } else if (yytokentype == YY_STR || yytokentype == YY_HEX ||
HDlexer.h19 #define YY_STR 1009 macro