Lines Matching refs:scrub_opts
330 static struct scrub_opts { struct
342 } scrub_opts; argument
506 struct scrub_opts scrub_opts; member
598 %type <v.scrub_opts> scrub_opts scrub_opt scrub_opts_l
1409 scrubrule : scrubaction dir logquick interface af proto fromto scrub_opts
1467 scrub_opts : {
1468 bzero(&scrub_opts, sizeof scrub_opts);
1469 scrub_opts.rtableid = -1;
1472 { $$ = scrub_opts; }
1474 bzero(&scrub_opts, sizeof scrub_opts);
1475 scrub_opts.rtableid = -1;
1476 $$ = scrub_opts;
1485 if (scrub_opts.nodf) {
1489 scrub_opts.nodf = 1;
1492 if (scrub_opts.marker & FOM_MINTTL) {
1500 scrub_opts.marker |= FOM_MINTTL;
1501 scrub_opts.minttl = $2;
1504 if (scrub_opts.marker & FOM_MAXMSS) {
1512 scrub_opts.marker |= FOM_MAXMSS;
1513 scrub_opts.maxmss = $2;
1516 if (scrub_opts.marker & FOM_SETTOS) {
1520 scrub_opts.marker |= FOM_SETTOS;
1521 scrub_opts.settos = $2;
1524 if (scrub_opts.marker & FOM_FRAGCACHE) {
1528 scrub_opts.marker |= FOM_FRAGCACHE;
1529 scrub_opts.fragcache = $1;
1539 if (scrub_opts.reassemble_tcp) {
1543 scrub_opts.reassemble_tcp = 1;
1546 if (scrub_opts.randomid) {
1550 scrub_opts.randomid = 1;
1557 scrub_opts.rtableid = $2;
1560 scrub_opts.match_tag = $3;
1561 scrub_opts.match_tag_not = $1;
2928 | SCRUB '(' scrub_opts ')' {