mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
473 lines
12 KiB
Python
473 lines
12 KiB
Python
import sys
|
|
from typing import Any, BinaryIO, Iterable, Text, overload
|
|
|
|
# ----- Constants -----
|
|
# Some socket families are listed in the "Socket families" section of the docs,
|
|
# but not the "Constants" section. These are listed at the end of the list of
|
|
# constants.
|
|
#
|
|
# Besides those and the first few constants listed, the constants are listed in
|
|
# documentation order.
|
|
|
|
# Constants defined by Python (i.e. not OS constants re-exported from C)
|
|
has_ipv6: bool
|
|
SocketType: Any
|
|
# Re-exported errno
|
|
EAGAIN: int
|
|
EBADF: int
|
|
EINTR: int
|
|
EWOULDBLOCK: int
|
|
|
|
# Constants re-exported from C
|
|
|
|
# Per socketmodule.c, only these three families are portable
|
|
AF_UNIX: AddressFamily
|
|
AF_INET: AddressFamily
|
|
AF_INET6: AddressFamily
|
|
|
|
SOCK_STREAM: SocketKind
|
|
SOCK_DGRAM: SocketKind
|
|
SOCK_RAW: SocketKind
|
|
SOCK_RDM: SocketKind
|
|
SOCK_SEQPACKET: SocketKind
|
|
|
|
# Address families not mentioned in the docs
|
|
AF_AAL5: AddressFamily
|
|
AF_APPLETALK: AddressFamily
|
|
AF_ASH: AddressFamily
|
|
AF_ATMPVC: AddressFamily
|
|
AF_ATMSVC: AddressFamily
|
|
AF_AX25: AddressFamily
|
|
AF_BRIDGE: AddressFamily
|
|
AF_DECnet: AddressFamily
|
|
AF_ECONET: AddressFamily
|
|
AF_IPX: AddressFamily
|
|
AF_IRDA: AddressFamily
|
|
AF_KEY: AddressFamily
|
|
AF_LLC: AddressFamily
|
|
AF_NETBEUI: AddressFamily
|
|
AF_NETROM: AddressFamily
|
|
AF_PPPOX: AddressFamily
|
|
AF_ROSE: AddressFamily
|
|
AF_ROUTE: AddressFamily
|
|
AF_SECURITY: AddressFamily
|
|
AF_SNA: AddressFamily
|
|
AF_SYSTEM: AddressFamily
|
|
AF_UNSPEC: AddressFamily
|
|
AF_WANPIPE: AddressFamily
|
|
AF_X25: AddressFamily
|
|
|
|
# The "many constants" referenced by the docs
|
|
SOMAXCONN: int
|
|
AI_ADDRCONFIG: AddressInfo
|
|
AI_ALL: AddressInfo
|
|
AI_CANONNAME: AddressInfo
|
|
AI_DEFAULT: AddressInfo
|
|
AI_MASK: AddressInfo
|
|
AI_NUMERICHOST: AddressInfo
|
|
AI_NUMERICSERV: AddressInfo
|
|
AI_PASSIVE: AddressInfo
|
|
AI_V4MAPPED: AddressInfo
|
|
AI_V4MAPPED_CFG: AddressInfo
|
|
EAI_ADDRFAMILY: int
|
|
EAI_AGAIN: int
|
|
EAI_BADFLAGS: int
|
|
EAI_BADHINTS: int
|
|
EAI_FAIL: int
|
|
EAI_FAMILY: int
|
|
EAI_MAX: int
|
|
EAI_MEMORY: int
|
|
EAI_NODATA: int
|
|
EAI_NONAME: int
|
|
EAI_OVERFLOW: int
|
|
EAI_PROTOCOL: int
|
|
EAI_SERVICE: int
|
|
EAI_SOCKTYPE: int
|
|
EAI_SYSTEM: int
|
|
INADDR_ALLHOSTS_GROUP: int
|
|
INADDR_ANY: int
|
|
INADDR_BROADCAST: int
|
|
INADDR_LOOPBACK: int
|
|
INADDR_MAX_LOCAL_GROUP: int
|
|
INADDR_NONE: int
|
|
INADDR_UNSPEC_GROUP: int
|
|
IPPORT_RESERVED: int
|
|
IPPORT_USERRESERVED: int
|
|
IPPROTO_AH: int
|
|
IPPROTO_BIP: int
|
|
IPPROTO_DSTOPTS: int
|
|
IPPROTO_EGP: int
|
|
IPPROTO_EON: int
|
|
IPPROTO_ESP: int
|
|
IPPROTO_FRAGMENT: int
|
|
IPPROTO_GGP: int
|
|
IPPROTO_GRE: int
|
|
IPPROTO_HELLO: int
|
|
IPPROTO_HOPOPTS: int
|
|
IPPROTO_ICMP: int
|
|
IPPROTO_ICMPV6: int
|
|
IPPROTO_IDP: int
|
|
IPPROTO_IGMP: int
|
|
IPPROTO_IP: int
|
|
IPPROTO_IPCOMP: int
|
|
IPPROTO_IPIP: int
|
|
IPPROTO_IPV4: int
|
|
IPPROTO_IPV6: int
|
|
IPPROTO_MAX: int
|
|
IPPROTO_MOBILE: int
|
|
IPPROTO_ND: int
|
|
IPPROTO_NONE: int
|
|
IPPROTO_PIM: int
|
|
IPPROTO_PUP: int
|
|
IPPROTO_RAW: int
|
|
IPPROTO_ROUTING: int
|
|
IPPROTO_RSVP: int
|
|
IPPROTO_SCTP: int
|
|
IPPROTO_TCP: int
|
|
IPPROTO_TP: int
|
|
IPPROTO_UDP: int
|
|
IPPROTO_VRRP: int
|
|
IPPROTO_XTP: int
|
|
IPV6_CHECKSUM: int
|
|
IPV6_DONTFRAG: int
|
|
IPV6_DSTOPTS: int
|
|
IPV6_HOPLIMIT: int
|
|
IPV6_HOPOPTS: int
|
|
IPV6_JOIN_GROUP: int
|
|
IPV6_LEAVE_GROUP: int
|
|
IPV6_MULTICAST_HOPS: int
|
|
IPV6_MULTICAST_IF: int
|
|
IPV6_MULTICAST_LOOP: int
|
|
IPV6_NEXTHOP: int
|
|
IPV6_PATHMTU: int
|
|
IPV6_PKTINFO: int
|
|
IPV6_RECVDSTOPTS: int
|
|
IPV6_RECVHOPLIMIT: int
|
|
IPV6_RECVHOPOPTS: int
|
|
IPV6_RECVPATHMTU: int
|
|
IPV6_RECVPKTINFO: int
|
|
IPV6_RECVRTHDR: int
|
|
IPV6_RECVTCLASS: int
|
|
IPV6_RTHDR: int
|
|
IPV6_RTHDRDSTOPTS: int
|
|
IPV6_RTHDR_TYPE_0: int
|
|
IPV6_TCLASS: int
|
|
IPV6_UNICAST_HOPS: int
|
|
IPV6_USE_MIN_MTU: int
|
|
IPV6_V6ONLY: int
|
|
IPX_TYPE: int
|
|
IP_ADD_MEMBERSHIP: int
|
|
IP_DEFAULT_MULTICAST_LOOP: int
|
|
IP_DEFAULT_MULTICAST_TTL: int
|
|
IP_DROP_MEMBERSHIP: int
|
|
IP_HDRINCL: int
|
|
IP_MAX_MEMBERSHIPS: int
|
|
IP_MULTICAST_IF: int
|
|
IP_MULTICAST_LOOP: int
|
|
IP_MULTICAST_TTL: int
|
|
IP_OPTIONS: int
|
|
IP_RECVDSTADDR: int
|
|
IP_RECVOPTS: int
|
|
IP_RECVRETOPTS: int
|
|
IP_RETOPTS: int
|
|
IP_TOS: int
|
|
IP_TRANSPARENT: int
|
|
IP_TTL: int
|
|
LOCAL_PEERCRED: int
|
|
MSG_BCAST: MsgFlag
|
|
MSG_BTAG: MsgFlag
|
|
MSG_CMSG_CLOEXEC: MsgFlag
|
|
MSG_CONFIRM: MsgFlag
|
|
MSG_CTRUNC: MsgFlag
|
|
MSG_DONTROUTE: MsgFlag
|
|
MSG_DONTWAIT: MsgFlag
|
|
MSG_EOF: MsgFlag
|
|
MSG_EOR: MsgFlag
|
|
MSG_ERRQUEUE: MsgFlag
|
|
MSG_ETAG: MsgFlag
|
|
MSG_FASTOPEN: MsgFlag
|
|
MSG_MCAST: MsgFlag
|
|
MSG_MORE: MsgFlag
|
|
MSG_NOSIGNAL: MsgFlag
|
|
MSG_NOTIFICATION: MsgFlag
|
|
MSG_OOB: MsgFlag
|
|
MSG_PEEK: MsgFlag
|
|
MSG_TRUNC: MsgFlag
|
|
MSG_WAITALL: MsgFlag
|
|
NI_DGRAM: int
|
|
NI_MAXHOST: int
|
|
NI_MAXSERV: int
|
|
NI_NAMEREQD: int
|
|
NI_NOFQDN: int
|
|
NI_NUMERICHOST: int
|
|
NI_NUMERICSERV: int
|
|
SCM_CREDENTIALS: int
|
|
SCM_CREDS: int
|
|
SCM_RIGHTS: int
|
|
SHUT_RD: int
|
|
SHUT_RDWR: int
|
|
SHUT_WR: int
|
|
SOL_ATALK: int
|
|
SOL_AX25: int
|
|
SOL_HCI: int
|
|
SOL_IP: int
|
|
SOL_IPX: int
|
|
SOL_NETROM: int
|
|
SOL_ROSE: int
|
|
SOL_SOCKET: int
|
|
SOL_TCP: int
|
|
SOL_UDP: int
|
|
SO_ACCEPTCONN: int
|
|
SO_BINDTODEVICE: int
|
|
SO_BROADCAST: int
|
|
SO_DEBUG: int
|
|
SO_DONTROUTE: int
|
|
SO_ERROR: int
|
|
SO_EXCLUSIVEADDRUSE: int
|
|
SO_KEEPALIVE: int
|
|
SO_LINGER: int
|
|
SO_MARK: int
|
|
SO_OOBINLINE: int
|
|
SO_PASSCRED: int
|
|
SO_PEERCRED: int
|
|
SO_PRIORITY: int
|
|
SO_RCVBUF: int
|
|
SO_RCVLOWAT: int
|
|
SO_RCVTIMEO: int
|
|
SO_REUSEADDR: int
|
|
SO_REUSEPORT: int
|
|
SO_SETFIB: int
|
|
SO_SNDBUF: int
|
|
SO_SNDLOWAT: int
|
|
SO_SNDTIMEO: int
|
|
SO_TYPE: int
|
|
SO_USELOOPBACK: int
|
|
TCP_CORK: int
|
|
TCP_DEFER_ACCEPT: int
|
|
TCP_FASTOPEN: int
|
|
TCP_INFO: int
|
|
TCP_KEEPCNT: int
|
|
TCP_KEEPIDLE: int
|
|
TCP_KEEPINTVL: int
|
|
TCP_LINGER2: int
|
|
TCP_MAXSEG: int
|
|
TCP_NODELAY: int
|
|
TCP_QUICKACK: int
|
|
TCP_SYNCNT: int
|
|
TCP_WINDOW_CLAMP: int
|
|
# Specifically-documented constants
|
|
|
|
if sys.platform == "linux":
|
|
AF_PACKET: AddressFamily
|
|
PF_PACKET: int
|
|
PACKET_BROADCAST: int
|
|
PACKET_FASTROUTE: int
|
|
PACKET_HOST: int
|
|
PACKET_LOOPBACK: int
|
|
PACKET_MULTICAST: int
|
|
PACKET_OTHERHOST: int
|
|
PACKET_OUTGOING: int
|
|
|
|
if sys.platform == "win32":
|
|
SIO_RCVALL: int
|
|
SIO_KEEPALIVE_VALS: int
|
|
RCVALL_IPLEVEL: int
|
|
RCVALL_MAX: int
|
|
RCVALL_OFF: int
|
|
RCVALL_ON: int
|
|
RCVALL_SOCKETLEVELONLY: int
|
|
|
|
if sys.platform == "linux":
|
|
AF_TIPC: AddressFamily
|
|
SOL_TIPC: int
|
|
TIPC_ADDR_ID: int
|
|
TIPC_ADDR_NAME: int
|
|
TIPC_ADDR_NAMESEQ: int
|
|
TIPC_CFG_SRV: int
|
|
TIPC_CLUSTER_SCOPE: int
|
|
TIPC_CONN_TIMEOUT: int
|
|
TIPC_CRITICAL_IMPORTANCE: int
|
|
TIPC_DEST_DROPPABLE: int
|
|
TIPC_HIGH_IMPORTANCE: int
|
|
TIPC_IMPORTANCE: int
|
|
TIPC_LOW_IMPORTANCE: int
|
|
TIPC_MEDIUM_IMPORTANCE: int
|
|
TIPC_NODE_SCOPE: int
|
|
TIPC_PUBLISHED: int
|
|
TIPC_SRC_DROPPABLE: int
|
|
TIPC_SUBSCR_TIMEOUT: int
|
|
TIPC_SUB_CANCEL: int
|
|
TIPC_SUB_PORTS: int
|
|
TIPC_SUB_SERVICE: int
|
|
TIPC_TOP_SRV: int
|
|
TIPC_WAIT_FOREVER: int
|
|
TIPC_WITHDRAWN: int
|
|
TIPC_ZONE_SCOPE: int
|
|
|
|
AF_LINK: AddressFamily # Availability: BSD, macOS
|
|
|
|
# Semi-documented constants
|
|
# (Listed under "Socket families" in the docs, but not "Constants")
|
|
|
|
if sys.platform == "linux":
|
|
# Netlink is defined by Linux
|
|
AF_NETLINK: AddressFamily
|
|
NETLINK_ARPD: int
|
|
NETLINK_CRYPTO: int
|
|
NETLINK_DNRTMSG: int
|
|
NETLINK_FIREWALL: int
|
|
NETLINK_IP6_FW: int
|
|
NETLINK_NFLOG: int
|
|
NETLINK_ROUTE6: int
|
|
NETLINK_ROUTE: int
|
|
NETLINK_SKIP: int
|
|
NETLINK_TAPBASE: int
|
|
NETLINK_TCPDIAG: int
|
|
NETLINK_USERSOCK: int
|
|
NETLINK_W1: int
|
|
NETLINK_XFRM: int
|
|
|
|
if sys.platform != "win32" and sys.platform != "darwin":
|
|
# Linux and some BSD support is explicit in the docs
|
|
# Windows and macOS do not support in practice
|
|
AF_BLUETOOTH: AddressFamily
|
|
BTPROTO_HCI: int
|
|
BTPROTO_L2CAP: int
|
|
BTPROTO_RFCOMM: int
|
|
BTPROTO_SCO: int # not in FreeBSD
|
|
|
|
BDADDR_ANY: str
|
|
BDADDR_LOCAL: str
|
|
|
|
HCI_FILTER: int # not in NetBSD or DragonFlyBSD
|
|
# not in FreeBSD, NetBSD, or DragonFlyBSD
|
|
HCI_TIME_STAMP: int
|
|
HCI_DATA_DIR: int
|
|
|
|
if sys.platform == "darwin":
|
|
# PF_SYSTEM is defined by macOS
|
|
PF_SYSTEM: int
|
|
SYSPROTO_CONTROL: int
|
|
|
|
# enum versions of above flags
|
|
AddressFamily = int
|
|
SocketKind = int
|
|
|
|
AddressInfo = int
|
|
MsgFlag = int
|
|
|
|
# ----- Exceptions -----
|
|
|
|
class error(IOError): ...
|
|
|
|
class herror(error):
|
|
def __init__(self, herror: int = ..., string: str = ...) -> None: ...
|
|
|
|
class gaierror(error):
|
|
def __init__(self, error: int = ..., string: str = ...) -> None: ...
|
|
|
|
class timeout(error):
|
|
def __init__(self, error: int = ..., string: str = ...) -> None: ...
|
|
|
|
# ----- Classes -----
|
|
|
|
# Addresses can be either tuples of varying lengths (AF_INET, AF_INET6,
|
|
# AF_NETLINK, AF_TIPC) or strings (AF_UNIX).
|
|
_Address = tuple[Any, ...] | str
|
|
_RetAddress = Any
|
|
# TODO Most methods allow bytes as address objects
|
|
|
|
_WriteBuffer = bytearray | memoryview
|
|
|
|
_CMSG = tuple[int, int, bytes]
|
|
|
|
class socket:
|
|
family: int
|
|
type: int
|
|
proto: int
|
|
def __init__(self, family: int = ..., type: int = ..., proto: int = ...) -> None: ...
|
|
# --- methods ---
|
|
def accept(self) -> tuple[socket, _RetAddress]: ...
|
|
def bind(self, address: _Address | bytes) -> None: ...
|
|
def close(self) -> None: ...
|
|
def connect(self, address: _Address | bytes) -> None: ...
|
|
def connect_ex(self, address: _Address | bytes) -> int: ...
|
|
def detach(self) -> int: ...
|
|
def dup(self) -> socket: ...
|
|
def fileno(self) -> int: ...
|
|
def getpeername(self) -> _RetAddress: ...
|
|
def getsockname(self) -> _RetAddress: ...
|
|
@overload
|
|
def getsockopt(self, level: int, optname: int) -> int: ...
|
|
@overload
|
|
def getsockopt(self, level: int, optname: int, buflen: int) -> bytes: ...
|
|
def gettimeout(self) -> float | None: ...
|
|
if sys.platform == "win32":
|
|
def ioctl(self, control: int, option: int | tuple[int, int, int]) -> None: ...
|
|
|
|
def listen(self, __backlog: int) -> None: ...
|
|
# Note that the makefile's documented windows-specific behavior is not represented
|
|
def makefile(self, mode: unicode = ..., buffering: int = ...) -> BinaryIO: ...
|
|
def recv(self, bufsize: int, flags: int = ...) -> bytes: ...
|
|
def recvfrom(self, bufsize: int, flags: int = ...) -> tuple[bytes, _RetAddress]: ...
|
|
def recvfrom_into(self, buffer: _WriteBuffer, nbytes: int = ..., flags: int = ...) -> tuple[int, _RetAddress]: ...
|
|
def recv_into(self, buffer: _WriteBuffer, nbytes: int = ..., flags: int = ...) -> int: ...
|
|
def send(self, data: bytes, flags: int = ...) -> int: ...
|
|
def sendall(self, data: bytes, flags: int = ...) -> None: ... # return type: None on success
|
|
@overload
|
|
def sendto(self, data: bytes, address: _Address) -> int: ...
|
|
@overload
|
|
def sendto(self, data: bytes, flags: int, address: _Address) -> int: ...
|
|
def setblocking(self, flag: bool) -> None: ...
|
|
def settimeout(self, value: float | None) -> None: ...
|
|
def setsockopt(self, level: int, optname: int, value: int | bytes) -> None: ...
|
|
if sys.platform == "win32":
|
|
def share(self, process_id: int) -> bytes: ...
|
|
|
|
def shutdown(self, how: int) -> None: ...
|
|
|
|
# ----- Functions -----
|
|
|
|
def create_connection(
|
|
address: tuple[str | None, int],
|
|
timeout: float | None = ...,
|
|
source_address: tuple[bytearray | bytes | Text, int] | None = ...,
|
|
) -> socket: ...
|
|
def fromfd(fd: int, family: int, type: int, proto: int = ...) -> socket: ...
|
|
|
|
# the 5th tuple item is an address
|
|
def getaddrinfo(
|
|
host: bytearray | bytes | Text | None,
|
|
port: str | int | None,
|
|
family: int = ...,
|
|
socktype: int = ...,
|
|
proto: int = ...,
|
|
flags: int = ...,
|
|
) -> list[tuple[AddressFamily, SocketKind, int, str, tuple[Any, ...]]]: ...
|
|
def getfqdn(name: str = ...) -> str: ...
|
|
def gethostbyname(hostname: str) -> str: ...
|
|
def gethostbyname_ex(hostname: str) -> tuple[str, list[str], list[str]]: ...
|
|
def gethostname() -> str: ...
|
|
def gethostbyaddr(ip_address: str) -> tuple[str, list[str], list[str]]: ...
|
|
def getnameinfo(sockaddr: tuple[str, int] | tuple[str, int, int, int], flags: int) -> tuple[str, str]: ...
|
|
def getprotobyname(protocolname: str) -> int: ...
|
|
def getservbyname(servicename: str, protocolname: str = ...) -> int: ...
|
|
def getservbyport(port: int, protocolname: str = ...) -> str: ...
|
|
|
|
if sys.platform == "win32":
|
|
def socketpair(family: int = ..., type: int = ..., proto: int = ...) -> tuple[socket, socket]: ...
|
|
|
|
else:
|
|
def socketpair(family: int | None = ..., type: int = ..., proto: int = ...) -> tuple[socket, socket]: ...
|
|
|
|
def ntohl(x: int) -> int: ... # param & ret val are 32-bit ints
|
|
def ntohs(x: int) -> int: ... # param & ret val are 16-bit ints
|
|
def htonl(x: int) -> int: ... # param & ret val are 32-bit ints
|
|
def htons(x: int) -> int: ... # param & ret val are 16-bit ints
|
|
def inet_aton(ip_string: str) -> bytes: ... # ret val 4 bytes in length
|
|
def inet_ntoa(packed_ip: bytes) -> str: ...
|
|
def inet_pton(address_family: int, ip_string: str) -> bytes: ...
|
|
def inet_ntop(address_family: int, packed_ip: bytes) -> str: ...
|
|
def getdefaulttimeout() -> float | None: ...
|
|
def setdefaulttimeout(timeout: float | None) -> None: ...
|