Symbol: queue_opts
dist/pf/sbin/pfctl/parse.y
1293
altqif : ALTQ interface queue_opts QUEUE qassign {
dist/pf/sbin/pfctl/parse.y
1317
queuespec : QUEUE STRING interface queue_opts qassign {
dist/pf/sbin/pfctl/parse.y
1354
queue_opts : {
dist/pf/sbin/pfctl/parse.y
1355
bzero(&queue_opts, sizeof queue_opts);
dist/pf/sbin/pfctl/parse.y
1356
queue_opts.priority = DEFAULT_PRIORITY;
dist/pf/sbin/pfctl/parse.y
1357
queue_opts.qlimit = DEFAULT_QLIMIT;
dist/pf/sbin/pfctl/parse.y
1358
queue_opts.scheduler.qtype = ALTQT_NONE;
dist/pf/sbin/pfctl/parse.y
1359
queue_opts.queue_bwspec.bw_percent = 100;
dist/pf/sbin/pfctl/parse.y
1362
{ $$ = queue_opts; }
dist/pf/sbin/pfctl/parse.y
1364
bzero(&queue_opts, sizeof queue_opts);
dist/pf/sbin/pfctl/parse.y
1365
queue_opts.priority = DEFAULT_PRIORITY;
dist/pf/sbin/pfctl/parse.y
1366
queue_opts.qlimit = DEFAULT_QLIMIT;
dist/pf/sbin/pfctl/parse.y
1367
queue_opts.scheduler.qtype = ALTQT_NONE;
dist/pf/sbin/pfctl/parse.y
1368
queue_opts.queue_bwspec.bw_percent = 100;
dist/pf/sbin/pfctl/parse.y
1369
$$ = queue_opts;
dist/pf/sbin/pfctl/parse.y
1378
if (queue_opts.marker & QOM_BWSPEC) {
dist/pf/sbin/pfctl/parse.y
1382
queue_opts.marker |= QOM_BWSPEC;
dist/pf/sbin/pfctl/parse.y
1383
queue_opts.queue_bwspec = $2;
dist/pf/sbin/pfctl/parse.y
1386
if (queue_opts.marker & QOM_PRIORITY) {
dist/pf/sbin/pfctl/parse.y
1394
queue_opts.marker |= QOM_PRIORITY;
dist/pf/sbin/pfctl/parse.y
1395
queue_opts.priority = $2;
dist/pf/sbin/pfctl/parse.y
1398
if (queue_opts.marker & QOM_QLIMIT) {
dist/pf/sbin/pfctl/parse.y
1406
queue_opts.marker |= QOM_QLIMIT;
dist/pf/sbin/pfctl/parse.y
1407
queue_opts.qlimit = $2;
dist/pf/sbin/pfctl/parse.y
1410
if (queue_opts.marker & QOM_SCHEDULER) {
dist/pf/sbin/pfctl/parse.y
1414
queue_opts.marker |= QOM_SCHEDULER;
dist/pf/sbin/pfctl/parse.y
1415
queue_opts.scheduler = $1;
dist/pf/sbin/pfctl/parse.y
1418
if (queue_opts.marker & QOM_TBRSIZE) {
dist/pf/sbin/pfctl/parse.y
1426
queue_opts.marker |= QOM_TBRSIZE;
dist/pf/sbin/pfctl/parse.y
1427
queue_opts.tbrsize = $2;
dist/pf/sbin/pfctl/parse.y
241
} queue_opts;
dist/pf/sbin/pfctl/parse.y
395
struct queue_opts queue_opts;
dist/pf/sbin/pfctl/parse.y
467
%type <v.queue_opts> queue_opts queue_opt queue_opts_l