1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# "drop on" isn't supported (filter-element) ----------------------------------
tcc 2>&1
prio {
drop on tcindex element(1);
}
EOF
ERROR
<stdin>:2: we currently don't support "drop on" near "tcindex"
# "drop on" isn't supported (element) -----------------------------------------
tcc 2>&1
egress {
tcindex {
drop on element(0);
}
}
EOF
ERROR
<stdin>:3: we currently don't support "drop on" near "element"
# "drop on" isn't supported (parameters) --------------------------------------
tcc 2>&1
egress {
tcindex {
drop on (0);
}
}
EOF
ERROR
<stdin>:3: we currently don't support "drop on" near "("
# "drop on" isn't supported (variable-parameters) -----------------------------
tcc 2>&1
egress {
$f = tcindex;
drop on $f(0);
}
EOF
ERROR
<stdin>:3: we currently don't support "drop on" near "("
# "drop on" isn't supported (variable-element) --------------------------------
tcc 2>&1
egress {
$f = tcindex;
drop on $f element(0);
}
EOF
ERROR
<stdin>:3: we currently don't support "drop on" near "element"
|