blob: b439e837ac9f0bd16f78e2615da40b6eef25d722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!-- include start from qos/tcp-flags.xml.i -->
<leafNode name="tcp">
<properties>
<help>TCP Flags matching</help>
<completionHelp>
<list>ack syn</list>
</completionHelp>
<valueHelp>
<format>ack</format>
<description>Match TCP ACK</description>
</valueHelp>
<valueHelp>
<format>syn</format>
<description>Match TCP SYN</description>
</valueHelp>
<constraint>
<regex>(ack|syn)</regex>
</constraint>
</properties>
</leafNode>
<!-- include end -->
|