|
923 | 923 | ├ TTL [uint8], (ONLY available for UDP type)
|
924 | 924 | ├ non_blocking_send [boolean], (NOT available for SHM type)
|
925 | 925 | ├ output_port [uint16], (ONLY available for UDP type)
|
| 926 | + ├ udp_priority_mappings [udpPriorityMappingsType], (ONLY available for UDP type) |
926 | 927 | ├ wan_addr [ipv4AddressFormat], (ONLY available for TCPv4 type)
|
927 | 928 | ├ keep_alive_frequency_ms [uint32], (ONLY available for TCP type)
|
928 | 929 | ├ keep_alive_timeout_ms [uint32], (ONLY available for TCP type)
|
|
996 | 997 | <xs:element name="TTL" type="uint8" minOccurs="0" maxOccurs="1"/>
|
997 | 998 | <xs:element name="non_blocking_send" type="boolean" minOccurs="0" maxOccurs="1"/>
|
998 | 999 | <xs:element name="output_port" type="uint16" minOccurs="0" maxOccurs="1"/>
|
| 1000 | + <xs:element name="udp_priority_mappings" type="udpPriorityMappingsType" minOccurs="0" maxOccurs="1"/> |
999 | 1001 | <xs:element name="wan_addr" type="ipv4AddressFormat" minOccurs="0" maxOccurs="1"/>
|
1000 | 1002 | <xs:element name="keep_alive_frequency_ms" type="uint32" minOccurs="0" maxOccurs="1"/>
|
1001 | 1003 | <xs:element name="keep_alive_timeout_ms" type="uint32" minOccurs="0" maxOccurs="1"/>
|
|
1159 | 1161 | </xs:all>
|
1160 | 1162 | </xs:complexType>
|
1161 | 1163 |
|
| 1164 | + <!--udp_priority_mappings: |
| 1165 | + └ priority [0~*] |
| 1166 | + ╠ att. value [int32] REQ |
| 1167 | + ╠ att. dscp [uint8] |
| 1168 | + ╠ att. source_port [uint16] |
| 1169 | + ╚ att. interface [string] |
| 1170 | + --> |
| 1171 | + <xs:complexType name="udpPriorityMappingsType"> |
| 1172 | + <xs:sequence minOccurs="0" maxOccurs="unbounded"> |
| 1173 | + <xs:element name="priority" minOccurs="0" maxOccurs="unbounded"> |
| 1174 | + <xs:complexType> |
| 1175 | + <xs:attribute name="value" type="int32" use="required"/> |
| 1176 | + <xs:attribute name="dscp" type="uint8" default="0"/> |
| 1177 | + <xs:attribute name="source_port" type="uint16" default="0"/> |
| 1178 | + <xs:attribute name="interface" type="string"/> |
| 1179 | + </xs:complexType> |
| 1180 | + </xs:element> |
| 1181 | + </xs:sequence> |
| 1182 | + </xs:complexType> |
| 1183 | + |
1162 | 1184 | <!--eth_priority_mappings:
|
1163 | 1185 | └ priority [0~*]
|
1164 | 1186 | ╠ att. value [int32] REQ
|
|
0 commit comments