PageRenderTime 57ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/html/_sources/library/socket.txt

https://bitbucket.org/andrikmb/py3k-doc
Plain Text | 886 lines | 619 code | 267 blank | 0 comment | 0 complexity | 79d4335aca745ea1721cc25579971c83 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. :mod:`socket` --- Low-level networking interface
  2. ================================================
  3. .. module:: socket
  4. :synopsis: Low-level networking interface.
  5. This module provides access to the BSD *socket* interface. It is available on
  6. all modern Unix systems, Windows, MacOS, OS/2, and probably additional
  7. platforms.
  8. .. note::
  9. Some behavior may be platform dependent, since calls are made to the operating
  10. system socket APIs.
  11. For an introduction to socket programming (in C), see the following papers: An
  12. Introductory 4.3BSD Interprocess Communication Tutorial, by Stuart Sechrest and
  13. An Advanced 4.3BSD Interprocess Communication Tutorial, by Samuel J. Leffler et
  14. al, both in the UNIX Programmer's Manual, Supplementary Documents 1 (sections
  15. PS1:7 and PS1:8). The platform-specific reference material for the various
  16. socket-related system calls are also a valuable source of information on the
  17. details of socket semantics. For Unix, refer to the manual pages; for Windows,
  18. see the WinSock (or Winsock 2) specification. For IPv6-ready APIs, readers may
  19. want to refer to :rfc:`3493` titled Basic Socket Interface Extensions for IPv6.
  20. .. index:: object: socket
  21. The Python interface is a straightforward transliteration of the Unix system
  22. call and library interface for sockets to Python's object-oriented style: the
  23. :func:`socket` function returns a :dfn:`socket object` whose methods implement
  24. the various socket system calls. Parameter types are somewhat higher-level than
  25. in the C interface: as with :meth:`read` and :meth:`write` operations on Python
  26. files, buffer allocation on receive operations is automatic, and buffer length
  27. is implicit on send operations.
  28. Socket addresses are represented as follows: A single string is used for the
  29. :const:`AF_UNIX` address family. A pair ``(host, port)`` is used for the
  30. :const:`AF_INET` address family, where *host* is a string representing either a
  31. hostname in Internet domain notation like ``'daring.cwi.nl'`` or an IPv4 address
  32. like ``'100.50.200.5'``, and *port* is an integral port number. For
  33. :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo,
  34. scopeid)`` is used, where *flowinfo* and *scopeid* represents ``sin6_flowinfo``
  35. and ``sin6_scope_id`` member in :const:`struct sockaddr_in6` in C. For
  36. :mod:`socket` module methods, *flowinfo* and *scopeid* can be omitted just for
  37. backward compatibility. Note, however, omission of *scopeid* can cause problems
  38. in manipulating scoped IPv6 addresses. Other address families are currently not
  39. supported. The address format required by a particular socket object is
  40. automatically selected based on the address family specified when the socket
  41. object was created.
  42. For IPv4 addresses, two special forms are accepted instead of a host address:
  43. the empty string represents :const:`INADDR_ANY`, and the string
  44. ``'<broadcast>'`` represents :const:`INADDR_BROADCAST`. The behavior is not
  45. available for IPv6 for backward compatibility, therefore, you may want to avoid
  46. these if you intend to support IPv6 with your Python programs.
  47. If you use a hostname in the *host* portion of IPv4/v6 socket address, the
  48. program may show a nondeterministic behavior, as Python uses the first address
  49. returned from the DNS resolution. The socket address will be resolved
  50. differently into an actual IPv4/v6 address, depending on the results from DNS
  51. resolution and/or the host configuration. For deterministic behavior use a
  52. numeric address in *host* portion.
  53. AF_NETLINK sockets are represented as pairs ``pid, groups``.
  54. Linux-only support for TIPC is also available using the :const:`AF_TIPC`
  55. address family. TIPC is an open, non-IP based networked protocol designed
  56. for use in clustered computer environments. Addresses are represented by a
  57. tuple, and the fields depend on the address type. The general tuple form is
  58. ``(addr_type, v1, v2, v3 [, scope])``, where:
  59. - *addr_type* is one of TIPC_ADDR_NAMESEQ, TIPC_ADDR_NAME, or
  60. TIPC_ADDR_ID.
  61. - *scope* is one of TIPC_ZONE_SCOPE, TIPC_CLUSTER_SCOPE, and
  62. TIPC_NODE_SCOPE.
  63. - If *addr_type* is TIPC_ADDR_NAME, then *v1* is the server type, *v2* is
  64. the port identifier, and *v3* should be 0.
  65. If *addr_type* is TIPC_ADDR_NAMESEQ, then *v1* is the server type, *v2*
  66. is the lower port number, and *v3* is the upper port number.
  67. If *addr_type* is TIPC_ADDR_ID, then *v1* is the node, *v2* is the
  68. reference, and *v3* should be set to 0.
  69. All errors raise exceptions. The normal exceptions for invalid argument types
  70. and out-of-memory conditions can be raised; errors related to socket or address
  71. semantics raise the error :exc:`socket.error`.
  72. Non-blocking mode is supported through :meth:`setblocking`. A generalization of
  73. this based on timeouts is supported through :meth:`settimeout`.
  74. The module :mod:`socket` exports the following constants and functions:
  75. .. exception:: error
  76. .. index:: module: errno
  77. This exception is raised for socket-related errors. The accompanying value is
  78. either a string telling what went wrong or a pair ``(errno, string)``
  79. representing an error returned by a system call, similar to the value
  80. accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names
  81. for the error codes defined by the underlying operating system.
  82. .. exception:: herror
  83. This exception is raised for address-related errors, i.e. for functions that use
  84. *h_errno* in the C API, including :func:`gethostbyname_ex` and
  85. :func:`gethostbyaddr`.
  86. The accompanying value is a pair ``(h_errno, string)`` representing an error
  87. returned by a library call. *string* represents the description of *h_errno*, as
  88. returned by the :cfunc:`hstrerror` C function.
  89. .. exception:: gaierror
  90. This exception is raised for address-related errors, for :func:`getaddrinfo` and
  91. :func:`getnameinfo`. The accompanying value is a pair ``(error, string)``
  92. representing an error returned by a library call. *string* represents the
  93. description of *error*, as returned by the :cfunc:`gai_strerror` C function. The
  94. *error* value will match one of the :const:`EAI_\*` constants defined in this
  95. module.
  96. .. exception:: timeout
  97. This exception is raised when a timeout occurs on a socket which has had
  98. timeouts enabled via a prior call to :meth:`settimeout`. The accompanying value
  99. is a string whose value is currently always "timed out".
  100. .. data:: AF_UNIX
  101. AF_INET
  102. AF_INET6
  103. These constants represent the address (and protocol) families, used for the
  104. first argument to :func:`socket`. If the :const:`AF_UNIX` constant is not
  105. defined then this protocol is unsupported.
  106. .. data:: SOCK_STREAM
  107. SOCK_DGRAM
  108. SOCK_RAW
  109. SOCK_RDM
  110. SOCK_SEQPACKET
  111. These constants represent the socket types, used for the second argument to
  112. :func:`socket`. (Only :const:`SOCK_STREAM` and :const:`SOCK_DGRAM` appear to be
  113. generally useful.)
  114. .. data:: SO_*
  115. SOMAXCONN
  116. MSG_*
  117. SOL_*
  118. IPPROTO_*
  119. IPPORT_*
  120. INADDR_*
  121. IP_*
  122. IPV6_*
  123. EAI_*
  124. AI_*
  125. NI_*
  126. TCP_*
  127. Many constants of these forms, documented in the Unix documentation on sockets
  128. and/or the IP protocol, are also defined in the socket module. They are
  129. generally used in arguments to the :meth:`setsockopt` and :meth:`getsockopt`
  130. methods of socket objects. In most cases, only those symbols that are defined
  131. in the Unix header files are defined; for a few symbols, default values are
  132. provided.
  133. .. data:: SIO_*
  134. RCVALL_*
  135. Constants for Windows' WSAIoctl(). The constants are used as arguments to the
  136. :meth:`ioctl` method of socket objects.
  137. .. data:: TIPC_*
  138. TIPC related constants, matching the ones exported by the C socket API. See
  139. the TIPC documentation for more information.
  140. .. data:: has_ipv6
  141. This constant contains a boolean value which indicates if IPv6 is supported on
  142. this platform.
  143. .. function:: create_connection(address[, timeout])
  144. Convenience function. Connect to *address* (a 2-tuple ``(host, port)``),
  145. and return the socket object. Passing the optional *timeout* parameter will
  146. set the timeout on the socket instance before attempting to connect. If no
  147. *timeout* is supplied, the global default timeout setting returned by
  148. :func:`getdefaulttimeout` is used.
  149. .. function:: getaddrinfo(host, port[, family[, socktype[, proto[, flags]]]])
  150. Resolves the *host*/*port* argument, into a sequence of 5-tuples that contain
  151. all the necessary arguments for creating the corresponding socket. *host* is a domain
  152. name, a string representation of an IPv4/v6 address or ``None``. *port* is a string
  153. service name such as ``'http'``, a numeric port number or ``None``.
  154. The rest of the arguments are optional and must be numeric if specified.
  155. By passing ``None`` as the value of *host* and *port*, , you can pass ``NULL`` to the C API.
  156. The :func:`getaddrinfo` function returns a list of 5-tuples with the following
  157. structure:
  158. ``(family, socktype, proto, canonname, sockaddr)``
  159. *family*, *socktype*, *proto* are all integers and are meant to be passed to the
  160. :func:`socket` function. *canonname* is a string representing the canonical name
  161. of the *host*. It can be a numeric IPv4/v6 address when :const:`AI_CANONNAME` is
  162. specified for a numeric *host*. *sockaddr* is a tuple describing a socket
  163. address, as described above. See the source for :mod:`socket` and other
  164. library modules for a typical usage of the function.
  165. .. function:: getfqdn([name])
  166. Return a fully qualified domain name for *name*. If *name* is omitted or empty,
  167. it is interpreted as the local host. To find the fully qualified name, the
  168. hostname returned by :func:`gethostbyaddr` is checked, followed by aliases for the
  169. host, if available. The first name which includes a period is selected. In
  170. case no fully qualified domain name is available, the hostname as returned by
  171. :func:`gethostname` is returned.
  172. .. function:: gethostbyname(hostname)
  173. Translate a host name to IPv4 address format. The IPv4 address is returned as a
  174. string, such as ``'100.50.200.5'``. If the host name is an IPv4 address itself
  175. it is returned unchanged. See :func:`gethostbyname_ex` for a more complete
  176. interface. :func:`gethostbyname` does not support IPv6 name resolution, and
  177. :func:`getaddrinfo` should be used instead for IPv4/v6 dual stack support.
  178. .. function:: gethostbyname_ex(hostname)
  179. Translate a host name to IPv4 address format, extended interface. Return a
  180. triple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the primary
  181. host name responding to the given *ip_address*, *aliaslist* is a (possibly
  182. empty) list of alternative host names for the same address, and *ipaddrlist* is
  183. a list of IPv4 addresses for the same interface on the same host (often but not
  184. always a single address). :func:`gethostbyname_ex` does not support IPv6 name
  185. resolution, and :func:`getaddrinfo` should be used instead for IPv4/v6 dual
  186. stack support.
  187. .. function:: gethostname()
  188. Return a string containing the hostname of the machine where the Python
  189. interpreter is currently executing.
  190. If you want to know the current machine's IP address, you may want to use
  191. ``gethostbyname(gethostname())``. This operation assumes that there is a
  192. valid address-to-host mapping for the host, and the assumption does not
  193. always hold.
  194. Note: :func:`gethostname` doesn't always return the fully qualified domain
  195. name; use ``getfqdn()`` (see above).
  196. .. function:: gethostbyaddr(ip_address)
  197. Return a triple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the
  198. primary host name responding to the given *ip_address*, *aliaslist* is a
  199. (possibly empty) list of alternative host names for the same address, and
  200. *ipaddrlist* is a list of IPv4/v6 addresses for the same interface on the same
  201. host (most likely containing only a single address). To find the fully qualified
  202. domain name, use the function :func:`getfqdn`. :func:`gethostbyaddr` supports
  203. both IPv4 and IPv6.
  204. .. function:: getnameinfo(sockaddr, flags)
  205. Translate a socket address *sockaddr* into a 2-tuple ``(host, port)``. Depending
  206. on the settings of *flags*, the result can contain a fully-qualified domain name
  207. or numeric address representation in *host*. Similarly, *port* can contain a
  208. string port name or a numeric port number.
  209. .. function:: getprotobyname(protocolname)
  210. Translate an Internet protocol name (for example, ``'icmp'``) to a constant
  211. suitable for passing as the (optional) third argument to the :func:`socket`
  212. function. This is usually only needed for sockets opened in "raw" mode
  213. (:const:`SOCK_RAW`); for the normal socket modes, the correct protocol is chosen
  214. automatically if the protocol is omitted or zero.
  215. .. function:: getservbyname(servicename[, protocolname])
  216. Translate an Internet service name and protocol name to a port number for that
  217. service. The optional protocol name, if given, should be ``'tcp'`` or
  218. ``'udp'``, otherwise any protocol will match.
  219. .. function:: getservbyport(port[, protocolname])
  220. Translate an Internet port number and protocol name to a service name for that
  221. service. The optional protocol name, if given, should be ``'tcp'`` or
  222. ``'udp'``, otherwise any protocol will match.
  223. .. function:: socket([family[, type[, proto]]])
  224. Create a new socket using the given address family, socket type and protocol
  225. number. The address family should be :const:`AF_INET` (the default),
  226. :const:`AF_INET6` or :const:`AF_UNIX`. The socket type should be
  227. :const:`SOCK_STREAM` (the default), :const:`SOCK_DGRAM` or perhaps one of the
  228. other ``SOCK_`` constants. The protocol number is usually zero and may be
  229. omitted in that case.
  230. .. function:: socketpair([family[, type[, proto]]])
  231. Build a pair of connected socket objects using the given address family, socket
  232. type, and protocol number. Address family, socket type, and protocol number are
  233. as for the :func:`socket` function above. The default family is :const:`AF_UNIX`
  234. if defined on the platform; otherwise, the default is :const:`AF_INET`.
  235. Availability: Unix.
  236. .. function:: fromfd(fd, family, type[, proto])
  237. Duplicate the file descriptor *fd* (an integer as returned by a file object's
  238. :meth:`fileno` method) and build a socket object from the result. Address
  239. family, socket type and protocol number are as for the :func:`socket` function
  240. above. The file descriptor should refer to a socket, but this is not checked ---
  241. subsequent operations on the object may fail if the file descriptor is invalid.
  242. This function is rarely needed, but can be used to get or set socket options on
  243. a socket passed to a program as standard input or output (such as a server
  244. started by the Unix inet daemon). The socket is assumed to be in blocking mode.
  245. Availability: Unix.
  246. .. function:: ntohl(x)
  247. Convert 32-bit positive integers from network to host byte order. On machines
  248. where the host byte order is the same as network byte order, this is a no-op;
  249. otherwise, it performs a 4-byte swap operation.
  250. .. function:: ntohs(x)
  251. Convert 16-bit positive integers from network to host byte order. On machines
  252. where the host byte order is the same as network byte order, this is a no-op;
  253. otherwise, it performs a 2-byte swap operation.
  254. .. function:: htonl(x)
  255. Convert 32-bit positive integers from host to network byte order. On machines
  256. where the host byte order is the same as network byte order, this is a no-op;
  257. otherwise, it performs a 4-byte swap operation.
  258. .. function:: htons(x)
  259. Convert 16-bit positive integers from host to network byte order. On machines
  260. where the host byte order is the same as network byte order, this is a no-op;
  261. otherwise, it performs a 2-byte swap operation.
  262. .. function:: inet_aton(ip_string)
  263. Convert an IPv4 address from dotted-quad string format (for example,
  264. '123.45.67.89') to 32-bit packed binary format, as a bytes object four characters in
  265. length. This is useful when conversing with a program that uses the standard C
  266. library and needs objects of type :ctype:`struct in_addr`, which is the C type
  267. for the 32-bit packed binary this function returns.
  268. If the IPv4 address string passed to this function is invalid,
  269. :exc:`socket.error` will be raised. Note that exactly what is valid depends on
  270. the underlying C implementation of :cfunc:`inet_aton`.
  271. :func:`inet_aton` does not support IPv6, and :func:`inet_pton` should be used
  272. instead for IPv4/v6 dual stack support.
  273. .. function:: inet_ntoa(packed_ip)
  274. Convert a 32-bit packed IPv4 address (a bytes object four characters in
  275. length) to its standard dotted-quad string representation (for example,
  276. '123.45.67.89'). This is useful when conversing with a program that uses the
  277. standard C library and needs objects of type :ctype:`struct in_addr`, which
  278. is the C type for the 32-bit packed binary data this function takes as an
  279. argument.
  280. If the byte sequence passed to this function is not exactly 4 bytes in
  281. length, :exc:`socket.error` will be raised. :func:`inet_ntoa` does not
  282. support IPv6, and :func:`inet_ntop` should be used instead for IPv4/v6 dual
  283. stack support.
  284. .. function:: inet_pton(address_family, ip_string)
  285. Convert an IP address from its family-specific string format to a packed,
  286. binary format. :func:`inet_pton` is useful when a library or network protocol
  287. calls for an object of type :ctype:`struct in_addr` (similar to
  288. :func:`inet_aton`) or :ctype:`struct in6_addr`.
  289. Supported values for *address_family* are currently :const:`AF_INET` and
  290. :const:`AF_INET6`. If the IP address string *ip_string* is invalid,
  291. :exc:`socket.error` will be raised. Note that exactly what is valid depends on
  292. both the value of *address_family* and the underlying implementation of
  293. :cfunc:`inet_pton`.
  294. Availability: Unix (maybe not all platforms).
  295. .. seealso::
  296. :func:`ipaddr.BaseIP.packed`
  297. Platform-independent conversion to a packed, binary format.
  298. .. function:: inet_ntop(address_family, packed_ip)
  299. Convert a packed IP address (a bytes object of some number of characters) to its
  300. standard, family-specific string representation (for example, ``'7.10.0.5'`` or
  301. ``'5aef:2b::8'``). :func:`inet_ntop` is useful when a library or network protocol
  302. returns an object of type :ctype:`struct in_addr` (similar to :func:`inet_ntoa`)
  303. or :ctype:`struct in6_addr`.
  304. Supported values for *address_family* are currently :const:`AF_INET` and
  305. :const:`AF_INET6`. If the string *packed_ip* is not the correct length for the
  306. specified address family, :exc:`ValueError` will be raised. A
  307. :exc:`socket.error` is raised for errors from the call to :func:`inet_ntop`.
  308. Availability: Unix (maybe not all platforms).
  309. .. function:: getdefaulttimeout()
  310. Return the default timeout in floating seconds for new socket objects. A value
  311. of ``None`` indicates that new socket objects have no timeout. When the socket
  312. module is first imported, the default is ``None``.
  313. .. function:: setdefaulttimeout(timeout)
  314. Set the default timeout in floating seconds for new socket objects. A value of
  315. ``None`` indicates that new socket objects have no timeout. When the socket
  316. module is first imported, the default is ``None``.
  317. .. data:: SocketType
  318. This is a Python type object that represents the socket object type. It is the
  319. same as ``type(socket(...))``.
  320. .. seealso::
  321. Module :mod:`socketserver`
  322. Classes that simplify writing network servers.
  323. .. _socket-objects:
  324. Socket Objects
  325. --------------
  326. Socket objects have the following methods. Except for :meth:`makefile` these
  327. correspond to Unix system calls applicable to sockets.
  328. .. method:: socket.accept()
  329. Accept a connection. The socket must be bound to an address and listening for
  330. connections. The return value is a pair ``(conn, address)`` where *conn* is a
  331. *new* socket object usable to send and receive data on the connection, and
  332. *address* is the address bound to the socket on the other end of the connection.
  333. .. method:: socket.bind(address)
  334. Bind the socket to *address*. The socket must not already be bound. (The format
  335. of *address* depends on the address family --- see above.)
  336. .. method:: socket.close()
  337. Close the socket. All future operations on the socket object will fail. The
  338. remote end will receive no more data (after queued data is flushed). Sockets are
  339. automatically closed when they are garbage-collected.
  340. .. method:: socket.connect(address)
  341. Connect to a remote socket at *address*. (The format of *address* depends on the
  342. address family --- see above.)
  343. .. method:: socket.connect_ex(address)
  344. Like ``connect(address)``, but return an error indicator instead of raising an
  345. exception for errors returned by the C-level :cfunc:`connect` call (other
  346. problems, such as "host not found," can still raise exceptions). The error
  347. indicator is ``0`` if the operation succeeded, otherwise the value of the
  348. :cdata:`errno` variable. This is useful to support, for example, asynchronous
  349. connects.
  350. .. method:: socket.fileno()
  351. Return the socket's file descriptor (a small integer). This is useful with
  352. :func:`select.select`.
  353. Under Windows the small integer returned by this method cannot be used where a
  354. file descriptor can be used (such as :func:`os.fdopen`). Unix does not have
  355. this limitation.
  356. .. method:: socket.getpeername()
  357. Return the remote address to which the socket is connected. This is useful to
  358. find out the port number of a remote IPv4/v6 socket, for instance. (The format
  359. of the address returned depends on the address family --- see above.) On some
  360. systems this function is not supported.
  361. .. method:: socket.getsockname()
  362. Return the socket's own address. This is useful to find out the port number of
  363. an IPv4/v6 socket, for instance. (The format of the address returned depends on
  364. the address family --- see above.)
  365. .. method:: socket.getsockopt(level, optname[, buflen])
  366. Return the value of the given socket option (see the Unix man page
  367. :manpage:`getsockopt(2)`). The needed symbolic constants (:const:`SO_\*` etc.)
  368. are defined in this module. If *buflen* is absent, an integer option is assumed
  369. and its integer value is returned by the function. If *buflen* is present, it
  370. specifies the maximum length of the buffer used to receive the option in, and
  371. this buffer is returned as a bytes object. It is up to the caller to decode the
  372. contents of the buffer (see the optional built-in module :mod:`struct` for a way
  373. to decode C structures encoded as byte strings).
  374. .. method:: socket.ioctl(control, option)
  375. :platform: Windows
  376. The :meth:`ioctl` method is a limited interface to the WSAIoctl system
  377. interface. Please refer to the MSDN documentation for more information.
  378. .. method:: socket.listen(backlog)
  379. Listen for connections made to the socket. The *backlog* argument specifies the
  380. maximum number of queued connections and should be at least 1; the maximum value
  381. is system-dependent (usually 5).
  382. .. method:: socket.makefile([mode[, bufsize]])
  383. .. index:: single: I/O control; buffering
  384. Return a :dfn:`file object` associated with the socket. (File objects are
  385. described in :ref:`bltin-file-objects`.) The file object
  386. references a :cfunc:`dup`\ ped version of the socket file descriptor, so the
  387. file object and socket object may be closed or garbage-collected independently.
  388. The socket must be in blocking mode (it can not have a timeout). The optional
  389. *mode* and *bufsize* arguments are interpreted the same way as by the built-in
  390. :func:`file` function.
  391. .. method:: socket.recv(bufsize[, flags])
  392. Receive data from the socket. The return value is a bytes object representing the
  393. data received. The maximum amount of data to be received at once is specified
  394. by *bufsize*. See the Unix manual page :manpage:`recv(2)` for the meaning of
  395. the optional argument *flags*; it defaults to zero.
  396. .. note::
  397. For best match with hardware and network realities, the value of *bufsize*
  398. should be a relatively small power of 2, for example, 4096.
  399. .. method:: socket.recvfrom(bufsize[, flags])
  400. Receive data from the socket. The return value is a pair ``(bytes, address)``
  401. where *bytes* is a bytes object representing the data received and *address* is the
  402. address of the socket sending the data. See the Unix manual page
  403. :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults
  404. to zero. (The format of *address* depends on the address family --- see above.)
  405. .. method:: socket.recvfrom_into(buffer[, nbytes[, flags]])
  406. Receive data from the socket, writing it into *buffer* instead of creating a
  407. new bytestring. The return value is a pair ``(nbytes, address)`` where *nbytes* is
  408. the number of bytes received and *address* is the address of the socket sending
  409. the data. See the Unix manual page :manpage:`recv(2)` for the meaning of the
  410. optional argument *flags*; it defaults to zero. (The format of *address*
  411. depends on the address family --- see above.)
  412. .. method:: socket.recv_into(buffer[, nbytes[, flags]])
  413. Receive up to *nbytes* bytes from the socket, storing the data into a buffer
  414. rather than creating a new bytestring. If *nbytes* is not specified (or 0),
  415. receive up to the size available in the given buffer. See the Unix manual page
  416. :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults
  417. to zero.
  418. .. method:: socket.send(bytes[, flags])
  419. Send data to the socket. The socket must be connected to a remote socket. The
  420. optional *flags* argument has the same meaning as for :meth:`recv` above.
  421. Returns the number of bytes sent. Applications are responsible for checking that
  422. all data has been sent; if only some of the data was transmitted, the
  423. application needs to attempt delivery of the remaining data.
  424. .. method:: socket.sendall(bytes[, flags])
  425. Send data to the socket. The socket must be connected to a remote socket. The
  426. optional *flags* argument has the same meaning as for :meth:`recv` above.
  427. Unlike :meth:`send`, this method continues to send data from *bytes* until
  428. either all data has been sent or an error occurs. ``None`` is returned on
  429. success. On error, an exception is raised, and there is no way to determine how
  430. much data, if any, was successfully sent.
  431. .. method:: socket.sendto(bytes[, flags], address)
  432. Send data to the socket. The socket should not be connected to a remote socket,
  433. since the destination socket is specified by *address*. The optional *flags*
  434. argument has the same meaning as for :meth:`recv` above. Return the number of
  435. bytes sent. (The format of *address* depends on the address family --- see
  436. above.)
  437. .. method:: socket.setblocking(flag)
  438. Set blocking or non-blocking mode of the socket: if *flag* is 0, the socket is
  439. set to non-blocking, else to blocking mode. Initially all sockets are in
  440. blocking mode. In non-blocking mode, if a :meth:`recv` call doesn't find any
  441. data, or if a :meth:`send` call can't immediately dispose of the data, a
  442. :exc:`error` exception is raised; in blocking mode, the calls block until they
  443. can proceed. ``s.setblocking(0)`` is equivalent to ``s.settimeout(0)``;
  444. ``s.setblocking(1)`` is equivalent to ``s.settimeout(None)``.
  445. .. method:: socket.settimeout(value)
  446. Set a timeout on blocking socket operations. The *value* argument can be a
  447. nonnegative float expressing seconds, or ``None``. If a float is given,
  448. subsequent socket operations will raise an :exc:`timeout` exception if the
  449. timeout period *value* has elapsed before the operation has completed. Setting
  450. a timeout of ``None`` disables timeouts on socket operations.
  451. ``s.settimeout(0.0)`` is equivalent to ``s.setblocking(0)``;
  452. ``s.settimeout(None)`` is equivalent to ``s.setblocking(1)``.
  453. .. method:: socket.gettimeout()
  454. Return the timeout in floating seconds associated with socket operations, or
  455. ``None`` if no timeout is set. This reflects the last call to
  456. :meth:`setblocking` or :meth:`settimeout`.
  457. Some notes on socket blocking and timeouts: A socket object can be in one of
  458. three modes: blocking, non-blocking, or timeout. Sockets are always created in
  459. blocking mode. In blocking mode, operations block until complete or
  460. the system returns an error (such as connection timed out). In
  461. non-blocking mode, operations fail (with an error that is unfortunately
  462. system-dependent) if they cannot be completed immediately. In timeout mode,
  463. operations fail if they cannot be completed within the timeout specified for the
  464. socket or if the system returns an error. The :meth:`setblocking` method is simply
  465. a shorthand for certain :meth:`settimeout` calls.
  466. Timeout mode internally sets the socket in non-blocking mode. The blocking and
  467. timeout modes are shared between file descriptors and socket objects that refer
  468. to the same network endpoint. A consequence of this is that file objects
  469. returned by the :meth:`makefile` method must only be used when the socket is in
  470. blocking mode; in timeout or non-blocking mode file operations that cannot be
  471. completed immediately will fail.
  472. Note that the :meth:`connect` operation is subject to the timeout setting, and
  473. in general it is recommended to call :meth:`settimeout` before calling
  474. :meth:`connect` or pass a timeout parameter to :meth:`create_connection`.
  475. The system network stack may return a connection timeout error
  476. of its own regardless of any python socket timeout setting.
  477. .. method:: socket.setsockopt(level, optname, value)
  478. .. index:: module: struct
  479. Set the value of the given socket option (see the Unix manual page
  480. :manpage:`setsockopt(2)`). The needed symbolic constants are defined in the
  481. :mod:`socket` module (:const:`SO_\*` etc.). The value can be an integer or a
  482. bytes object representing a buffer. In the latter case it is up to the caller to
  483. ensure that the bytestring contains the proper bits (see the optional built-in
  484. module :mod:`struct` for a way to encode C structures as bytestrings).
  485. .. method:: socket.shutdown(how)
  486. Shut down one or both halves of the connection. If *how* is :const:`SHUT_RD`,
  487. further receives are disallowed. If *how* is :const:`SHUT_WR`, further sends
  488. are disallowed. If *how* is :const:`SHUT_RDWR`, further sends and receives are
  489. disallowed.
  490. Note that there are no methods :meth:`read` or :meth:`write`; use :meth:`recv`
  491. and :meth:`send` without *flags* argument instead.
  492. Socket objects also have these (read-only) attributes that correspond to the
  493. values given to the :class:`socket` constructor.
  494. .. attribute:: socket.family
  495. The socket family.
  496. .. attribute:: socket.type
  497. The socket type.
  498. .. attribute:: socket.proto
  499. The socket protocol.
  500. .. _socket-example:
  501. Example
  502. -------
  503. Here are four minimal example programs using the TCP/IP protocol: a server that
  504. echoes all data that it receives back (servicing only one client), and a client
  505. using it. Note that a server must perform the sequence :func:`socket`,
  506. :meth:`bind`, :meth:`listen`, :meth:`accept` (possibly repeating the
  507. :meth:`accept` to service more than one client), while a client only needs the
  508. sequence :func:`socket`, :meth:`connect`. Also note that the server does not
  509. :meth:`send`/:meth:`recv` on the socket it is listening on but on the new
  510. socket returned by :meth:`accept`.
  511. The first two examples support IPv4 only. ::
  512. # Echo server program
  513. import socket
  514. HOST = '' # Symbolic name meaning all available interfaces
  515. PORT = 50007 # Arbitrary non-privileged port
  516. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  517. s.bind((HOST, PORT))
  518. s.listen(1)
  519. conn, addr = s.accept()
  520. print('Connected by', addr)
  521. while True:
  522. data = conn.recv(1024)
  523. if not data: break
  524. conn.send(data)
  525. conn.close()
  526. ::
  527. # Echo client program
  528. import socket
  529. HOST = 'daring.cwi.nl' # The remote host
  530. PORT = 50007 # The same port as used by the server
  531. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  532. s.connect((HOST, PORT))
  533. s.send(b'Hello, world')
  534. data = s.recv(1024)
  535. s.close()
  536. print('Received', repr(data))
  537. The next two examples are identical to the above two, but support both IPv4 and
  538. IPv6. The server side will listen to the first address family available (it
  539. should listen to both instead). On most of IPv6-ready systems, IPv6 will take
  540. precedence and the server may not accept IPv4 traffic. The client side will try
  541. to connect to the all addresses returned as a result of the name resolution, and
  542. sends traffic to the first one connected successfully. ::
  543. # Echo server program
  544. import socket
  545. import sys
  546. HOST = None # Symbolic name meaning all available interfaces
  547. PORT = 50007 # Arbitrary non-privileged port
  548. s = None
  549. for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC,
  550. socket.SOCK_STREAM, 0, socket.AI_PASSIVE):
  551. af, socktype, proto, canonname, sa = res
  552. try:
  553. s = socket.socket(af, socktype, proto)
  554. except socket.error as msg:
  555. s = None
  556. continue
  557. try:
  558. s.bind(sa)
  559. s.listen(1)
  560. except socket.error as msg:
  561. s.close()
  562. s = None
  563. continue
  564. break
  565. if s is None:
  566. print('could not open socket')
  567. sys.exit(1)
  568. conn, addr = s.accept()
  569. print('Connected by', addr)
  570. while True:
  571. data = conn.recv(1024)
  572. if not data: break
  573. conn.send(data)
  574. conn.close()
  575. ::
  576. # Echo client program
  577. import socket
  578. import sys
  579. HOST = 'daring.cwi.nl' # The remote host
  580. PORT = 50007 # The same port as used by the server
  581. s = None
  582. for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, socket.SOCK_STREAM):
  583. af, socktype, proto, canonname, sa = res
  584. try:
  585. s = socket.socket(af, socktype, proto)
  586. except socket.error as msg:
  587. s = None
  588. continue
  589. try:
  590. s.connect(sa)
  591. except socket.error as msg:
  592. s.close()
  593. s = None
  594. continue
  595. break
  596. if s is None:
  597. print('could not open socket')
  598. sys.exit(1)
  599. s.send(b'Hello, world')
  600. data = s.recv(1024)
  601. s.close()
  602. print('Received', repr(data))
  603. The last example shows how to write a very simple network sniffer with raw
  604. sockets on Windows. The example requires administrator privileges to modify
  605. the interface::
  606. import socket
  607. # the public network interface
  608. HOST = socket.gethostbyname(socket.gethostname())
  609. # create a raw socket and bind it to the public interface
  610. s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_IP)
  611. s.bind((HOST, 0))
  612. # Include IP headers
  613. s.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1)
  614. # receive all packages
  615. s.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON)
  616. # receive a package
  617. print(s.recvfrom(65565))
  618. # disabled promiscuous mode
  619. s.ioctl(socket.SIO_RCVALL, socket.RCVALL_OFF)