1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="EventUtil" namespace="" name="EventUtil">
<constant name="AF_INET" value="2">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="AF_INET6" value="10">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="AF_UNSPEC" value="0">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="LIBEVENT_VERSION_NUMBER" value="33559808">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_DEBUG" value="1">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_REUSEADDR" value="2">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_KEEPALIVE" value="9">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_DONTROUTE" value="5">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_LINGER" value="13">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_BROADCAST" value="6">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_OOBINLINE" value="10">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_SNDBUF" value="7">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_RCVBUF" value="8">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_SNDLOWAT" value="19">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_RCVLOWAT" value="18">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_SNDTIMEO" value="21">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_RCVTIMEO" value="20">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_TYPE" value="3">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SO_ERROR" value="4">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SOL_SOCKET" value="1">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SOL_TCP" value="6">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="SOL_UDP" value="17">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="IPPROTO_IP" value="0">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="IPPROTO_IPV6" value="41">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="The abstract constructor"/>
<return type="void"/>
</docblock>
</constructor>
<method name="getLastSocketErrno" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the most recent socket error number"/>
<return type="int"/>
</docblock>
<parameter name="socket" optional="true" byreference="false" type="object" class="mixed"/>
</method>
<method name="getLastSocketError" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the most recent socket error"/>
<return type="string"/>
</docblock>
<parameter name="socket" optional="true" byreference="false" type="object" class="mixed"/>
</method>
<method name="getSocketFd" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns numeric file descriptor of a socket, or stream"/>
<return type="int"/>
</docblock>
<parameter name="socket" optional="false" byreference="false" type="object" class="mixed"/>
</method>
<method name="getSocketName" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Retreives the current address to which the socket is bound"/>
<return type="bool"/>
</docblock>
<parameter name="socket" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="address" optional="false" byreference="false" type="string"/>
<parameter name="port" optional="true" byreference="false" type="object" class="mixed"/>
</method>
<method name="setSocketOption" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets socket options"/>
<return type="bool"/>
</docblock>
<parameter name="socket" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="level" optional="false" byreference="false" type="int"/>
<parameter name="optname" optional="false" byreference="false" type="int"/>
<parameter name="optval" optional="false" byreference="false" type="object" class="mixed"/>
</method>
<method name="sslRandPoll" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Generates entropy by means of OpenSSL's RAND_poll()"/>
<return type="void"/>
</docblock>
</method>
</class>
|