diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-13 23:12:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-13 23:12:48 +0300 |
commit | 2583f9ca16232d74720753b5d214431b526b28df (patch) | |
tree | 12bc3eb00482fde567d8b6e6c994ae33aa7dcd76 /testxml | |
parent | ff0c28ffc426a08622d33187aa02df6cdb1527bd (diff) | |
download | evol-tools-2583f9ca16232d74720753b5d214431b526b28df.tar.gz evol-tools-2583f9ca16232d74720753b5d214431b526b28df.tar.bz2 evol-tools-2583f9ca16232d74720753b5d214431b526b28df.tar.xz evol-tools-2583f9ca16232d74720753b5d214431b526b28df.zip |
testxml: add xsd for network.xml
Diffstat (limited to 'testxml')
-rw-r--r-- | testxml/xsd/tmw.xsd | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testxml/xsd/tmw.xsd b/testxml/xsd/tmw.xsd index a3cd642..8f7dd44 100644 --- a/testxml/xsd/tmw.xsd +++ b/testxml/xsd/tmw.xsd @@ -1411,6 +1411,34 @@ </xs:sequence> </xs:complexType> + <xs:element name="network" type="root_network"/> + <xs:complexType name="root_network"> + <xs:sequence> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="include"/> + <xs:element name="inpackets" type="network_inpackets" /> + </xs:choice> + </xs:sequence> + </xs:complexType> + <xs:complexType name="network_inpackets"> + <xs:sequence> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="include"/> + <xs:element name="fakepacket"> + <xs:complexType> + <xs:attribute name="id" type="xs:int" use="required"/> + <xs:attribute name="len" type="xs:int" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="removepacket"> + <xs:complexType> + <xs:attribute name="id" type="xs:int" use="required"/> + </xs:complexType> + </xs:element> + </xs:choice> + </xs:sequence> + </xs:complexType> + <xs:element name="stats" type="root_stats"/> <xs:complexType name="root_stats"> <xs:sequence> |