nwfilter: Extend schema to accept state attribute

Extend the nwfilter.rng schema to accept state attribute.
This commit is contained in:
Stefan Berger 2010-10-07 06:44:41 -04:00
parent 5c6405a058
commit ec59a85d30

View File

@ -429,6 +429,11 @@
<ref name="uint16range"/>
</attribute>
</optional>
<optional>
<attribute name="state">
<ref name="stateflags-type"/>
</attribute>
</optional>
</interleave>
</define>
@ -860,4 +865,10 @@
<define name='comment-type'>
<data type="string"/>
</define>
<define name='stateflags-type'>
<data type="string">
<param name="pattern">((NEW|ESTABLISHED|RELATED|INVALID)(,(NEW|ESTABLISHED|RELATED|INVALID))*|NONE)</param>
</data>
</define>
</grammar>