doc: Fix enum tags thanks to 2bc6db6

This commit is contained in:
Rémi Verschelde
2017-11-24 23:16:30 +01:00
parent 2bc6db65c1
commit 7dfba3cda9
133 changed files with 2117 additions and 2060 deletions

View File

@ -78,25 +78,25 @@
</method>
</methods>
<constants>
<constant name="RESOLVER_STATUS_NONE" value="0">
<constant name="RESOLVER_STATUS_NONE" value="0" enum="ResolverStatus">
</constant>
<constant name="RESOLVER_STATUS_WAITING" value="1">
<constant name="RESOLVER_STATUS_WAITING" value="1" enum="ResolverStatus">
</constant>
<constant name="RESOLVER_STATUS_DONE" value="2">
<constant name="RESOLVER_STATUS_DONE" value="2" enum="ResolverStatus">
</constant>
<constant name="RESOLVER_STATUS_ERROR" value="3">
<constant name="RESOLVER_STATUS_ERROR" value="3" enum="ResolverStatus">
</constant>
<constant name="RESOLVER_MAX_QUERIES" value="32" enum="">
<constant name="RESOLVER_MAX_QUERIES" value="32">
</constant>
<constant name="RESOLVER_INVALID_ID" value="-1" enum="">
<constant name="RESOLVER_INVALID_ID" value="-1">
</constant>
<constant name="TYPE_NONE" value="0">
<constant name="TYPE_NONE" value="0" enum="Type">
</constant>
<constant name="TYPE_IPV4" value="1">
<constant name="TYPE_IPV4" value="1" enum="Type">
</constant>
<constant name="TYPE_IPV6" value="2">
<constant name="TYPE_IPV6" value="2" enum="Type">
</constant>
<constant name="TYPE_ANY" value="3">
<constant name="TYPE_ANY" value="3" enum="Type">
</constant>
</constants>
</class>