123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- final class Socket
- {
- }
- final class AddressInfo
- {
- }
- function socket_select(?array &$read, ?array &$write, ?array &$except, ?int $seconds, int $microseconds = 0): int|false {}
- function socket_create_listen(int $port, int $backlog = 128): Socket|false {}
- function socket_accept(Socket $socket): Socket|false {}
- function socket_set_nonblock(Socket $socket): bool {}
- function socket_set_block(Socket $socket): bool {}
- function socket_listen(Socket $socket, int $backlog = 0): bool {}
- function socket_close(Socket $socket): void {}
- function socket_write(Socket $socket, string $data, ?int $length = null): int|false {}
- function socket_read(Socket $socket, int $length, int $mode = PHP_BINARY_READ): string|false {}
- function socket_getsockname(Socket $socket, &$address, &$port = null): bool {}
- function socket_getpeername(Socket $socket, &$address, &$port = null): bool {}
- function socket_create(int $domain, int $type, int $protocol): Socket|false {}
- function socket_connect(Socket $socket, string $address, ?int $port = null): bool {}
- function socket_strerror(int $error_code): string {}
- function socket_bind(Socket $socket, string $address, int $port = 0): bool {}
- function socket_recv(Socket $socket, &$data, int $length, int $flags): int|false {}
- function socket_send(Socket $socket, string $data, int $length, int $flags): int|false {}
- function socket_recvfrom(Socket $socket, &$data, int $length, int $flags, &$address, &$port = null): int|false {}
- function socket_sendto(Socket $socket, string $data, int $length, int $flags, string $address, ?int $port = null): int|false {}
- function socket_get_option(Socket $socket, int $level, int $option): array|int|false {}
- function socket_getopt(Socket $socket, int $level, int $option): array|int|false {}
- function socket_set_option(Socket $socket, int $level, int $option, $value): bool {}
- function socket_setopt(Socket $socket, int $level, int $option, $value): bool {}
- function socket_create_pair(int $domain, int $type, int $protocol, &$pair): bool {}
- function socket_shutdown(Socket $socket, int $mode = 2): bool {}
- function socket_last_error(?Socket $socket = null): int {}
- function socket_clear_error(?Socket $socket = null): void {}
- function socket_import_stream($stream): Socket|false {}
- function socket_export_stream(Socket $socket) {}
- function socket_sendmsg(Socket $socket, array $message, int $flags = 0): int|false {}
- function socket_recvmsg(Socket $socket, array &$message, int $flags = 0): int|false {}
- function socket_cmsg_space(int $level, int $type, int $num = 0): ?int {}
- function socket_addrinfo_lookup(string $host, ?string $service = null, array $hints = []): array|false {}
- function socket_addrinfo_connect(AddressInfo $address): Socket|false {}
- function socket_addrinfo_bind(AddressInfo $address): Socket|false {}
- function socket_addrinfo_explain(AddressInfo $address): array {}
- function socket_wsaprotocol_info_export(Socket $socket, int $process_id): string|false {}
- function socket_wsaprotocol_info_import(string $info_id): Socket|false {}
- function socket_wsaprotocol_info_release(string $info_id): bool {}
|