Home | History | Annotate | Download | only in pfctl

Lines Matching defs:scrub_opts

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