File: dropon

package info (click to toggle)
tcng 10b-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,632 kB
  • ctags: 2,515
  • sloc: ansic: 19,038; pascal: 4,640; yacc: 2,619; sh: 1,908; perl: 1,546; lex: 772; makefile: 755
file content (46 lines) | stat: -rw-r--r-- 1,055 bytes parent folder | download | duplicates (5)
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"