当前位置: 首页 > 文档资料 > Swoole 中文文档 >

Coroutine\Socket

优质
小牛编辑
138浏览
2023-12-01

Swoole\Coroutine\Socket模块相比协程风格服务端协程客户端相关模块Socket可以实现更细粒度的一些IO操作。

!> 可使用Co\Socket短命名简化类名。此模块比较底层,使用者最好有Socket编程经验。

完整示例

$socket = new Co\Socket(AF_INET, SOCK_STREAM, 0);

go(function () use ($socket) {
    $retval = $socket->connect('localhost', 9601);
    while ($retval)
    {
        $n = $socket->send("hello");
        var_dump($n);

        $data = $socket->recv();
        var_dump($data);

        if (empty($data)) {//发生错误或对端关闭连接,本端也需要关闭
            $socket->close();
            break;
        }
        co::sleep(1.0);
    }
    var_dump($retval, $socket->errCode);
});

协程调度

Coroutine\Socket模块提供的IO操作接口均为同步编程风格,底层自动使用协程调度器实现异步IO

错误码

在执行socket相关系统调用时,可能返回-1错误,底层会设置Coroutine\Socket->errCode属性为系统错误编号errno,请参考响应的man文档。如$socket->accept()返回错误时,errCode含义可以参考man accept中列出的错误码文档。

属性

fd

socket对应的文件描述符ID

errCode

错误码

方法

__construct()

构造方法。构造Coroutine\Socket对象。

Swoole\Coroutine\Socket->__construct(int $domain, int $type, int $protocol);

!> 详情可参见man socket文档。

  • 参数

    • int $domain

      • 功能:协议域【可使用AF_INETAF_INET6AF_UNIX
      • 默认值:无
      • 其它值:无
    • int $type

      • 功能:类型【可使用SOCK_STREAMSOCK_DGRAMSOCK_RAW
      • 默认值:无
      • 其它值:无
    • int $protocol

      • 功能:协议【可使用IPPROTO_TCPIPPROTO_UDPIPPROTO_STCPIPPROTO_TIPC0
      • 默认值:无
      • 其它值:无

!> 构造方法会调用socket系统调用创建一个socket句柄。调用失败时会抛出Swoole\Coroutine\Socket\Exception异常。并设置$socket->errCode属性。可根据该属性的值得到系统调用失败的原因。

getOption()

获取配置。

!> 此方法对应getsockopt系统调用, 详情可参见man getsockopt文档。
此方法和sockets扩展的socket_get_option功能等价, 可以参见PHP文档

!> Swoole版本 >= v4.3.2

Swoole\Coroutine\Socket->getOption(int $level, int $optname): mixed
  • 参数

    • int $level

      • 功能:指定选项所在的协议级别
      • 默认值:无
      • 其它值:无

      !> 例如,要在套接字级别检索选项,将使用SOL_SOCKETlevel 参数。
      可以通过指定该级别的协议编号来使用其他级别,例如TCP。可以使用getprotobyname函数找到协议号。

    • int $optname

      • 功能:可用的套接字选项与socket_get_option()函数的套接字选项相同
      • 默认值:无
      • 其它值:无

setOption()

设置配置。

!> 此方法对应setsockopt系统调用, 详情可参见man setsockopt文档。此方法和sockets扩展的socket_set_option功能等价, 可以参见PHP文档

!> Swoole版本 >= v4.3.2

Swoole\Coroutine\Socket->setOption(int $level, int $optname, mixed $optval ): bool
  • 参数

    • int $level

      • 功能:指定选项所在的协议级别
      • 默认值:无
      • 其它值:无

      !> 例如,要在套接字级别检索选项,将使用SOL_SOCKETlevel 参数。
      可以通过指定该级别的协议编号来使用其他级别,例如TCP。可以使用getprotobyname函数找到协议号。

    • int $optname

      • 功能:可用的套接字选项与socket_get_option()函数的套接字选项相同
      • 默认值:无
      • 其它值:无
    • int $optval

      • 功能:选项的值 【可以是intboolstringarray。根据leveloptname决定。】
      • 默认值:无
      • 其它值:无

setProtocol()

使socket获得协议处理能力,可以配置是否开启SSL加密传输和解决 tcp粘包问题

!> Swoole版本 >= v4.3.2

Swoole\Coroutine\Socket->setProtocol(array $settings): bool
  • $settings 支持的参数
参数类型
open_sslbool
ssl_cert_filestring
ssl_key_filestring
open_eof_checkbool
open_eof_splitbool
open_mqtt_protocolbool
open_length_checkbool
package_eofstring
package_length_typestring
package_length_offsetint
package_body_offsetint
package_length_funccallable
package_max_lengthint

!> 上述所有参数的意义和Server::set()完全一致,在此不再赘述。

  • 示例

    $socket->setProtocol([
        'open_length_check'     => true,
        'package_max_length'    => 1024 * 1024,
        'package_length_type'   => 'N',
        'package_length_offset' => 0,
        'package_body_offset'   => 4,
    ]);

bind()

绑定地址和端口。

!> 此方法没有IO操作,不会引起协程切换

Swoole\Coroutine\Socket->bind(string $address, int $port = 0): bool
  • 参数

    • int $address

      • 功能:绑定的地址【如0.0.0.0127.0.0.1
      • 默认值:无
      • 其它值:无
    • int $port

      • 功能::绑定的端口【默认为0,系统会随机绑定一个可用端口,可使用getsockname方法得到系统分配的port
      • 默认值0
      • 其它值:无
  • 返回值

    • 绑定成功返回true
    • 绑定失败返回false,请检查errCode属性获取失败原因

listen()

监听Socket

!> 此方法没有IO操作,不会引起协程切换

Swoole\Coroutine\Socket->listen(int $backlog = 0): bool
  • 参数

    • int $backlog

      • 功能:监听队列的长度【默认为0,系统底层使用epoll实现了异步IO,不存在阻塞,因此backlog的重要程度并不高】
      • 默认值0
      • 其它值:无

      !> 如果应用中存在阻塞或耗时逻辑,accept接受连接不及时,新创建的连接就会堆积在backlog监听队列中,如超出backlog长度,服务就会拒绝新的连接进入

  • 返回值

    • 绑定成功返回true
    • 绑定失败返回false,请检查errCode属性获取失败原因
  • 内核参数

    backlog的最大值受限于内核参数net.core.somaxconn, 而Linux中可以工具sysctl来动态调整所有的kernel参数。所谓动态调整就是内核参数值修改后即时生效。但是这个生效仅限于OS层面,必须重启应用才能真正生效, 命令sysctl -a会显示所有的内核参数及值。

    sysctl -w net.core.somaxconn=2048

    以上命令将内核参数net.core.somaxconn的值改成了2048。这样的改动虽然可以立即生效,但是重启机器后会恢复默认值。为了永久保留改动,需要修改/etc/sysctl.conf,增加net.core.somaxconn=2048然后执行命令sysctl -p生效。

accept()

接受客户端发起的连接。

调用此方法会立即挂起当前协程,并加入EventLoop监听可读事件,当Socket可读有到来的连接时自动唤醒该协程,并返回对应客户端连接的Socket对象。

!> 该方法必须在使用listen方法后使用,适用于Server端。

Swoole\Coroutine\Socket->accept(float $timeout = -1): Coroutine\Socket|false;
  • 参数

    • int $timeout
      • 功能:设置超时【默认为-1表示永不超时。设置超时参数后,底层会设置定时器,在规定的时间没有客户端连接到来,accept方法将返回false
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值1
      • 其它值:无
  • 返回值

    • 超时或accept系统调用报错时返回false,可使用errCode属性获取错误码,其中超时错误码为ETIMEDOUT
    • 成功返回客户端连接的socket,类型同样为Swoole\Coroutine\Socket对象。可对其执行sendrecvclose等操作
  • 示例

    $socket = new Co\Socket(AF_INET, SOCK_STREAM, 0);
    $socket->bind('127.0.0.1', 9601);
    $socket->listen(128);
    
    go(function () use ($socket) {
        while(true) {
            echo "Accept: \n";
            $client = $socket->accept();
            if ($client === false) {
                var_dump($socket->errCode);
            } else {
                var_dump($client);
            }
        }
    });

connect()

连接到目标服务器。

调用此方法会发起异步的connect系统调用,并挂起当前协程,底层会监听可写,当连接完成或失败后,恢复该协程。

该方法适用于Client端,支持IPv4IPv6unixSocket

Swoole\Coroutine\Socket->connect(string $host, int $port = 0, float $timeout = -1): bool;
  • 参数

    • string $host

      • 功能:目标服务器的地址【如127.0.0.1192.168.1.100/tmp/php-fpm.sockwww.baidu.com等,可以传入IP地址、Unix Socket路径或域名。若为域名,底层会自动进行异步的DNS解析,不会引起阻塞】
      • 默认值:无
      • 其它值:无
    • int $port

      • 功能:目标服务器端口【SocketdomainAF_INETAF_INET6时必须设置端口】
      • 默认值:无
      • 其它值:无
    • float $timeout

      • 功能:设置超时时间【底层会设置定时器,在规定的时间内未能建立连接,connect将返回false
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值:1s
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • 超时或connect系统调用报错时返回false,可使用errCode属性获取错误码,其中超时错误码为ETIMEDOUT
    • 成功返回true

send()

向对端发送数据。

!> send方法会立即执行send系统调用发送数据,当send系统调用返回错误EAGAIN时,底层将自动监听可写事件,并挂起当前协程,等待可写事件触发时,重新执行send系统调用发送数据,并唤醒该协程。

!> 如果send过快,recv过慢最终会导致操作系统缓冲区写满,当前协程挂起在send方法,可以适当调大缓冲区,/proc/sys/net/core/wmem_max和SO_SNDBUF

Swoole\Coroutine\Socket->send(string $data, float $timeout = -1): int|false;
  • 参数

    • string $data

      • 功能:要发送的数据内容【可以为文本或二进制数据】
      • 默认值:无
      • 其它值:无
    • float $timeout

      • 功能:设置超时时间【默认为-1表示永不超时】
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值-1
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • 发送成功返回写入的字节数,请注意实际写入的数据可能小于$data参数的长度,应用层代码需要对比返回值与strlen($data)是否相等来判断是否发送完成
    • 发送失败返回false,并设置errCode属性

sendAll()

向对端发送数据。与send方法不同的是, sendAll会尽可能完整地发送数据, 直到成功发送全部数据或遇到错误中止。

!> sendAll方法会立即执行多次send系统调用发送数据,当send系统调用返回错误EAGAIN时,底层将自动监听可写事件,并挂起当前协程,等待可写事件触发时,重新执行send系统调用发送数据, 直到数据发送完成或遇到错误, 唤醒对应协程。

!> Swoole版本 >= v4.3.0

Swoole\Coroutine\Socket->sendAll(string $data, float $timeout = -1) : int | false;
  • 参数

    • string $data

      • 功能:要发送的数据内容【可以为文本或二进制数据】
      • 默认值:无
      • 其它值:无
    • float $timeout

      • 功能:设置超时时间【默认为-1表示永不超时】
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值-1
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • sendAll会保证数据全部发送成功,但是sendAll期间对端有可能将连接断开,此时可能发送成功了部分数据,返回值会返回这个成功数据的长度,应用层代码需要对比返回值与strlen($data)是否相等来判断是否发送完成,根据业务需求是否需要续传。
    • 发送失败返回false,并设置errCode属性

recv()

接收数据。

!> recv方法会立即挂起当前协程并监听可读事件,等待对端发送数据后,可读事件触发时,执行recv系统调用获取socket缓存区中的数据,并唤醒该协程。

Swoole\Coroutine\Socket->recv(int $length = 65535, float $timeout = -1): string|false;
  • 参数

    • int $length

      • 功能:每次接收长度
      • 默认值:无
      • 其它值:无
    • float $timeout

      • 功能:设置超时时间【默认为-1表示永不超时】
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值-1
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • 接收成功返回实际数据
    • 接收失败返回false,并设置errCode属性
    • 接收超时,错误码为ETIMEDOUT

!> 返回值不一定等于预期长度, 需要自行检查该次调用接收数据的长度, 如需要保证单次调用获取到指定长度的数据, 请使用recvAll方法或自行循环获取
粘包问题请参考setProtocol()方法,或者用sendto();

recvAll()

接收数据。与recv不同的是, recvAll会尽可能完整地接收响应长度的数据, 直到接收完成或遇到错误失败。

!> recvAll方法会立即挂起当前协程并监听可读事件,等待对端发送数据后,可读事件触发时,执行recv系统调用获取socket缓存区中的数据, 重复该行为直到接收到指定长度的数据或遇到错误终止,并唤醒该协程。

!> Swoole版本 >= v4.3.0

Swoole\Coroutine\Socket->recvAll(int $length = 65535, float $timeout = -1): string|false;
  • 参数

    • int $length

      • 功能:每次接收长度
      • 默认值:无
      • 其它值:无
    • float $timeout

      • 功能:设置超时时间【默认为-1表示永不超时】
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值-1
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • 接收成功返回实际数据, 并且返回的字符串长度和参数长度一致
    • 接收失败返回false,并设置errCode属性
    • 接收超时,错误码为ETIMEDOUT

recvPacket()

对于已通过setProtocol方法设置协议的Socket对象, 可调用此方法接收一个完整的协议数据包

!> Swoole版本 >= v4.4.0

Swoole\Coroutine\Socket->recvPacket(float $timeout = -1): string|false;
  • 参数

    • float $timeout
      • 功能:设置超时时间【默认为-1表示永不超时】
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值-1
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • 接收成功返回一个完整协议数据包
    • 接收失败返回false,并设置errCode属性
    • 接收超时,错误码为ETIMEDOUT

sendto()

向指定的地址和端口发送数据。用于SOCK_DGRAM类型的socket

!> 此方法没有协程调度,底层会立即调用sendto向目标主机发送数据。此方法不会监听可写,sendto可能会因为缓存区已满而返会false,需要自行处理,或者使用send方法。

Swoole\Coroutine\Socket->sendto(string $address, int $port, string $data): int|false;
  • 参数

    • string $address

      • 功能:目标主机的IP地址或unixSocket路径【sendto不支持域名,使用AF_INETAF_INET6时,必须传入合法的IP地址,否则发送会返回失败】
      • 默认值:无
      • 其它值:无
    • int $port

      • 功能:目标主机的端口【发送广播时可以为0
      • 默认值:无
      • 其它值:无
    • string $data

      • 功能:发送的数据【可以为文本或二进制内容,请注意SOCK_DGRAM发送包的最大长度为64K
      • 默认值:无
      • 其它值:无
  • 返回值

    • 发送成功返回发送的字节数
    • 发送失败返回false,并设置errCode属性
  • 示例

    $socket = new Co\Socket(AF_INET, SOCK_DGRAM, 0);
    $socket->sendto('127.0.0.1', 9601, "HELO");

recvfrom()

接收数据,并设置来源主机的地址和端口。用于SOCK_DGRAM类型的socket

!> 此方法会引起协程调度,底层会立即挂起当前协程,并监听可读事件。可读事件触发,收到数据后执行recvfrom系统调用获取数据包。

Swoole\Coroutine\Socket->recvfrom(array &$peer, float $timeout = -1): string|false;
  • 参数

    • array $peer

      • 功能:对端地址和端口,引用类型。【函数成功返回时会设置为数组,包括addressport两个元素】
      • 默认值:无
      • 其它值:无
    • float $timeout

      • 功能:设置超时时间【默认为-1表示永不超时,在规定的时间内未返回数据,recvfrom方法会返回false
      • 值单位: 秒【支持浮点型,如1.5表示1s+500ms
      • 默认值-1
      • 其它值:无
      • 参考客户端超时规则
  • 返回值

    • 成功接收数据,返回数据内容,并设置$peer为数组
    • 失败返回false,并设置errCode属性,不修改$peer的内容
  • 示例

    go(function () {
        $socket = new Co\Socket(AF_INET, SOCK_DGRAM, 0);
        $socket->bind('127.0.0.1', 9601);
        while (true) {
            $peer = null;
            $data = $socket->recvfrom($peer);
            echo "[Server] recvfrom[{$peer['address']}:{$peer['port']}] : $data\n";
            $socket->sendto($peer['address'], $peer['port'], "Swoole: $data");
        }
    });

getsockname()

获取socket的地址和端口信息。

!> 此方法没有协程调度开销。

Swoole\Coroutine\Socket->getsockname(): array|false;
  • 返回值

    • 调用成功返回,包含addressport的数组
    • 调用失败返回false,并设置errCode属性

getpeername()

获取socket的对端地址和端口信息,仅用于SOCK_STREAM类型有连接的socket

?> 此方法没有协程调度开销。

Swoole\Coroutine\Socket->getpeername(): array|false;
  • 返回值

    • 调用成功返回,包含addressport的数组
    • 调用失败返回false,并设置errCode属性

close()

关闭Socket

!> Co\Socket对象析构时如果会自动执行close,此方法没有协程调度开销。

Swoole\Coroutine\Socket->close(): bool;
  • 返回值

    • 关闭成功返回true
    • 失败返回false

常量

等价于sockets扩展提供的常量, 且不会与sockets扩展产生冲突

!> 在不同系统下的值会有出入, 以下代码仅为示例, 请勿使用其值

define ('AF_UNIX', 1);
define ('AF_INET', 2);

/**
 * Only available if compiled with IPv6 support.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('AF_INET6', 10);
define ('SOCK_STREAM', 1);
define ('SOCK_DGRAM', 2);
define ('SOCK_RAW', 3);
define ('SOCK_SEQPACKET', 5);
define ('SOCK_RDM', 4);
define ('MSG_OOB', 1);
define ('MSG_WAITALL', 256);
define ('MSG_CTRUNC', 8);
define ('MSG_TRUNC', 32);
define ('MSG_PEEK', 2);
define ('MSG_DONTROUTE', 4);

/**
 * Not available on Windows platforms.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('MSG_EOR', 128);

/**
 * Not available on Windows platforms.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('MSG_EOF', 512);
define ('MSG_CONFIRM', 2048);
define ('MSG_ERRQUEUE', 8192);
define ('MSG_NOSIGNAL', 16384);
define ('MSG_DONTWAIT', 64);
define ('MSG_MORE', 32768);
define ('MSG_WAITFORONE', 65536);
define ('MSG_CMSG_CLOEXEC', 1073741824);
define ('SO_DEBUG', 1);
define ('SO_REUSEADDR', 2);

/**
 * This constant is only available in PHP 5.4.10 or later on platforms that
 * support the <b>SO_REUSEPORT</b> socket option: this
 * includes Mac OS X and FreeBSD, but does not include Linux or Windows.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SO_REUSEPORT', 15);
define ('SO_KEEPALIVE', 9);
define ('SO_DONTROUTE', 5);
define ('SO_LINGER', 13);
define ('SO_BROADCAST', 6);
define ('SO_OOBINLINE', 10);
define ('SO_SNDBUF', 7);
define ('SO_RCVBUF', 8);
define ('SO_SNDLOWAT', 19);
define ('SO_RCVLOWAT', 18);
define ('SO_SNDTIMEO', 21);
define ('SO_RCVTIMEO', 20);
define ('SO_TYPE', 3);
define ('SO_ERROR', 4);
define ('SO_BINDTODEVICE', 25);
define ('SOL_SOCKET', 1);
define ('SOMAXCONN', 128);

/**
 * Used to disable Nagle TCP algorithm.
 * Added in PHP 5.2.7.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('TCP_NODELAY', 1);
define ('PHP_NORMAL_READ', 1);
define ('PHP_BINARY_READ', 2);
define ('MCAST_JOIN_GROUP', 42);
define ('MCAST_LEAVE_GROUP', 45);
define ('MCAST_BLOCK_SOURCE', 43);
define ('MCAST_UNBLOCK_SOURCE', 44);
define ('MCAST_JOIN_SOURCE_GROUP', 46);
define ('MCAST_LEAVE_SOURCE_GROUP', 47);
define ('IP_MULTICAST_IF', 32);
define ('IP_MULTICAST_TTL', 33);
define ('IP_MULTICAST_LOOP', 34);
define ('IPV6_MULTICAST_IF', 17);
define ('IPV6_MULTICAST_HOPS', 18);
define ('IPV6_MULTICAST_LOOP', 19);
define ('IPV6_V6ONLY', 27);

/**
 * Operation not permitted.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EPERM', 1);

/**
 * No such file or directory.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOENT', 2);

/**
 * Interrupted system call.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EINTR', 4);

/**
 * I/O error.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EIO', 5);

/**
 * No such device or address.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENXIO', 6);

/**
 * Arg list too long.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_E2BIG', 7);

/**
 * Bad file number.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADF', 9);

/**
 * Try again.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EAGAIN', 11);

/**
 * Out of memory.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOMEM', 12);

/**
 * Permission denied.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EACCES', 13);

/**
 * Bad address.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EFAULT', 14);

/**
 * Block device required.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTBLK', 15);

/**
 * Device or resource busy.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBUSY', 16);

/**
 * File exists.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EEXIST', 17);

/**
 * Cross-device link.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EXDEV', 18);

/**
 * No such device.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENODEV', 19);

/**
 * Not a directory.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTDIR', 20);

/**
 * Is a directory.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EISDIR', 21);

/**
 * Invalid argument.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EINVAL', 22);

/**
 * File table overflow.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENFILE', 23);

/**
 * Too many open files.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EMFILE', 24);

/**
 * Not a typewriter.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTTY', 25);

/**
 * No space left on device.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOSPC', 28);

/**
 * Illegal seek.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ESPIPE', 29);

/**
 * Read-only file system.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EROFS', 30);

/**
 * Too many links.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EMLINK', 31);

/**
 * Broken pipe.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EPIPE', 32);

/**
 * File name too long.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENAMETOOLONG', 36);

/**
 * No record locks available.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOLCK', 37);

/**
 * Function not implemented.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOSYS', 38);

/**
 * Directory not empty.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTEMPTY', 39);

/**
 * Too many symbolic links encountered.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ELOOP', 40);

/**
 * Operation would block.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EWOULDBLOCK', 11);

/**
 * No message of desired type.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOMSG', 42);

/**
 * Identifier removed.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EIDRM', 43);

/**
 * Channel number out of range.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ECHRNG', 44);

/**
 * Level 2 not synchronized.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EL2NSYNC', 45);

/**
 * Level 3 halted.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EL3HLT', 46);

/**
 * Level 3 reset.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EL3RST', 47);

/**
 * Link number out of range.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ELNRNG', 48);

/**
 * Protocol driver not attached.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EUNATCH', 49);

/**
 * No CSI structure available.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOCSI', 50);

/**
 * Level 2 halted.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EL2HLT', 51);

/**
 * Invalid exchange.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADE', 52);

/**
 * Invalid request descriptor.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADR', 53);

/**
 * Exchange full.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EXFULL', 54);

/**
 * No anode.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOANO', 55);

/**
 * Invalid request code.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADRQC', 56);

/**
 * Invalid slot.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADSLT', 57);

/**
 * Device not a stream.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOSTR', 60);

/**
 * No data available.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENODATA', 61);

/**
 * Timer expired.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ETIME', 62);

/**
 * Out of streams resources.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOSR', 63);

/**
 * Machine is not on the network.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENONET', 64);

/**
 * Object is remote.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EREMOTE', 66);

/**
 * Link has been severed.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOLINK', 67);

/**
 * Advertise error.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EADV', 68);

/**
 * Srmount error.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ESRMNT', 69);

/**
 * Communication error on send.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ECOMM', 70);

/**
 * Protocol error.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EPROTO', 71);

/**
 * Multihop attempted.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EMULTIHOP', 72);

/**
 * Not a data message.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADMSG', 74);

/**
 * Name not unique on network.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTUNIQ', 76);

/**
 * File descriptor in bad state.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EBADFD', 77);

/**
 * Remote address changed.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EREMCHG', 78);

/**
 * Interrupted system call should be restarted.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ERESTART', 85);

/**
 * Streams pipe error.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ESTRPIPE', 86);

/**
 * Too many users.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EUSERS', 87);

/**
 * Socket operation on non-socket.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTSOCK', 88);

/**
 * Destination address required.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EDESTADDRREQ', 89);

/**
 * Message too long.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EMSGSIZE', 90);

/**
 * Protocol wrong type for socket.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EPROTOTYPE', 91);
define ('SOCKET_ENOPROTOOPT', 92);

/**
 * Protocol not supported.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EPROTONOSUPPORT', 93);

/**
 * Socket type not supported.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ESOCKTNOSUPPORT', 94);

/**
 * Operation not supported on transport endpoint.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EOPNOTSUPP', 95);

/**
 * Protocol family not supported.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EPFNOSUPPORT', 96);

/**
 * Address family not supported by protocol.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EAFNOSUPPORT', 97);
define ('SOCKET_EADDRINUSE', 98);

/**
 * Cannot assign requested address.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EADDRNOTAVAIL', 99);

/**
 * Network is down.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENETDOWN', 100);

/**
 * Network is unreachable.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENETUNREACH', 101);

/**
 * Network dropped connection because of reset.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENETRESET', 102);

/**
 * Software caused connection abort.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ECONNABORTED', 103);

/**
 * Connection reset by peer.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ECONNRESET', 104);

/**
 * No buffer space available.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOBUFS', 105);

/**
 * Transport endpoint is already connected.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EISCONN', 106);

/**
 * Transport endpoint is not connected.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOTCONN', 107);

/**
 * Cannot send after transport endpoint shutdown.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ESHUTDOWN', 108);

/**
 * Too many references: cannot splice.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ETOOMANYREFS', 109);

/**
 * Connection timed out.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ETIMEDOUT', 110);

/**
 * Connection refused.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ECONNREFUSED', 111);

/**
 * Host is down.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EHOSTDOWN', 112);

/**
 * No route to host.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EHOSTUNREACH', 113);

/**
 * Operation already in progress.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EALREADY', 114);

/**
 * Operation now in progress.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EINPROGRESS', 115);

/**
 * Is a named type file.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EISNAM', 120);

/**
 * Remote I/O error.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EREMOTEIO', 121);

/**
 * Quota exceeded.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EDQUOT', 122);

/**
 * No medium found.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_ENOMEDIUM', 123);

/**
 * Wrong medium type.
 * @link http://php.net/manual/en/sockets.constants.php
 */
define ('SOCKET_EMEDIUMTYPE', 124);
define ('IPPROTO_IP', 0);
define ('IPPROTO_IPV6', 41);
define ('SOL_TCP', 6);
define ('SOL_UDP', 17);
define ('IPV6_UNICAST_HOPS', 16);
define ('IPV6_RECVPKTINFO', 49);
define ('IPV6_PKTINFO', 50);
define ('IPV6_RECVHOPLIMIT', 51);
define ('IPV6_HOPLIMIT', 52);
define ('IPV6_RECVTCLASS', 66);
define ('IPV6_TCLASS', 67);
define ('SCM_RIGHTS', 1);
define ('SCM_CREDENTIALS', 2);
define ('SO_PASSCRED', 16);