Symbol: scrub_opts
dist/pf/sbin/pfctl/parse.y
1000
if (scrub_opts.marker & SOM_FRAGCACHE) {
dist/pf/sbin/pfctl/parse.y
1004
scrub_opts.marker |= SOM_FRAGCACHE;
dist/pf/sbin/pfctl/parse.y
1005
scrub_opts.fragcache = $1;
dist/pf/sbin/pfctl/parse.y
1015
if (scrub_opts.reassemble_tcp) {
dist/pf/sbin/pfctl/parse.y
1019
scrub_opts.reassemble_tcp = 1;
dist/pf/sbin/pfctl/parse.y
1022
if (scrub_opts.randomid) {
dist/pf/sbin/pfctl/parse.y
1026
scrub_opts.randomid = 1;
dist/pf/sbin/pfctl/parse.y
1033
scrub_opts.rtableid = $2;
dist/pf/sbin/pfctl/parse.y
227
} scrub_opts;
dist/pf/sbin/pfctl/parse.y
396
struct scrub_opts scrub_opts;
dist/pf/sbin/pfctl/parse.y
468
%type <v.scrub_opts> scrub_opts scrub_opt scrub_opts_l
dist/pf/sbin/pfctl/parse.y
905
scrubrule : scrubaction dir logquick interface af proto fromto scrub_opts
dist/pf/sbin/pfctl/parse.y
951
scrub_opts : {
dist/pf/sbin/pfctl/parse.y
952
bzero(&scrub_opts, sizeof scrub_opts);
dist/pf/sbin/pfctl/parse.y
953
scrub_opts.rtableid = -1;
dist/pf/sbin/pfctl/parse.y
956
{ $$ = scrub_opts; }
dist/pf/sbin/pfctl/parse.y
958
bzero(&scrub_opts, sizeof scrub_opts);
dist/pf/sbin/pfctl/parse.y
959
scrub_opts.rtableid = -1;
dist/pf/sbin/pfctl/parse.y
960
$$ = scrub_opts;
dist/pf/sbin/pfctl/parse.y
969
if (scrub_opts.nodf) {
dist/pf/sbin/pfctl/parse.y
973
scrub_opts.nodf = 1;
dist/pf/sbin/pfctl/parse.y
976
if (scrub_opts.marker & SOM_MINTTL) {
dist/pf/sbin/pfctl/parse.y
984
scrub_opts.marker |= SOM_MINTTL;
dist/pf/sbin/pfctl/parse.y
985
scrub_opts.minttl = $2;
dist/pf/sbin/pfctl/parse.y
988
if (scrub_opts.marker & SOM_MAXMSS) {
dist/pf/sbin/pfctl/parse.y
996
scrub_opts.marker |= SOM_MAXMSS;
dist/pf/sbin/pfctl/parse.y
997
scrub_opts.maxmss = $2;