Home | History | Annotate | Download | only in pfctl

Lines Matching defs:pool_opts

249 struct pool_opts {
258 } pool_opts;
367 u_int8_t pool_opts;
398 struct pool_opts pool_opts;
470 %type <v.pool_opts> pool_opts pool_opt pool_opts_l
1971 r.rpool.opts = $5.pool_opts;
3389 pool_opts : { bzero(&pool_opts, sizeof pool_opts); }
3391 { $$ = pool_opts; }
3393 bzero(&pool_opts, sizeof pool_opts);
3394 $$ = pool_opts;
3403 if (pool_opts.type) {
3407 pool_opts.type = PF_POOL_BITMASK;
3410 if (pool_opts.type) {
3414 pool_opts.type = PF_POOL_RANDOM;
3417 if (pool_opts.type) {
3421 pool_opts.type = PF_POOL_SRCHASH;
3422 pool_opts.key = $2;
3425 if (pool_opts.type) {
3429 pool_opts.type = PF_POOL_ROUNDROBIN;
3432 if (pool_opts.staticport) {
3436 pool_opts.staticport = 1;
3443 pool_opts.marker |= POM_STICKYADDRESS;
3444 pool_opts.opts |= PF_POOL_STICKYADDR;
3500 redirpool pool_opts opt_statelock
3887 $$.pool_opts = 0;
3892 $$.pool_opts = 0;
3894 | ROUTETO routespec pool_opts {
3897 $$.pool_opts = $3.type | $3.opts;
3901 | REPLYTO routespec pool_opts {
3904 $$.pool_opts = $3.type | $3.opts;
3908 | DUPTO routespec pool_opts {
3911 $$.pool_opts = $3.type | $3.opts;