Christian Heimes | 04ae916 | 2008-01-04 15:23:30 +0000 | [diff] [blame] | 1 |
|
| 2 | :mod:`socket` --- Low-level networking interface
|
| 3 | ================================================
|
| 4 |
|
| 5 | .. module:: socket
|
| 6 | :synopsis: Low-level networking interface.
|
| 7 |
|
| 8 |
|
| 9 | This module provides access to the BSD *socket* interface. It is available on
|
| 10 | all modern Unix systems, Windows, Mac OS X, BeOS, OS/2, and probably additional
|
| 11 | platforms.
|
| 12 |
|
| 13 | .. note::
|
| 14 |
|
| 15 | Some behavior may be platform dependent, since calls are made to the operating
|
| 16 | system socket APIs.
|
| 17 |
|
| 18 | For an introduction to socket programming (in C), see the following papers: An
|
| 19 | Introductory 4.3BSD Interprocess Communication Tutorial, by Stuart Sechrest and
|
| 20 | An Advanced 4.3BSD Interprocess Communication Tutorial, by Samuel J. Leffler et
|
| 21 | al, both in the UNIX Programmer's Manual, Supplementary Documents 1 (sections
|
| 22 | PS1:7 and PS1:8). The platform-specific reference material for the various
|
| 23 | socket-related system calls are also a valuable source of information on the
|
| 24 | details of socket semantics. For Unix, refer to the manual pages; for Windows,
|
| 25 | see the WinSock (or Winsock 2) specification. For IPv6-ready APIs, readers may
|
| 26 | want to refer to :rfc:`2553` titled Basic Socket Interface Extensions for IPv6.
|
| 27 |
|
| 28 | .. index:: object: socket
|
| 29 |
|
| 30 | The Python interface is a straightforward transliteration of the Unix system
|
| 31 | call and library interface for sockets to Python's object-oriented style: the
|
| 32 | :func:`socket` function returns a :dfn:`socket object` whose methods implement
|
| 33 | the various socket system calls. Parameter types are somewhat higher-level than
|
| 34 | in the C interface: as with :meth:`read` and :meth:`write` operations on Python
|
| 35 | files, buffer allocation on receive operations is automatic, and buffer length
|
| 36 | is implicit on send operations.
|
| 37 |
|
| 38 | Socket addresses are represented as follows: A single string is used for the
|
| 39 | :const:`AF_UNIX` address family. A pair ``(host, port)`` is used for the
|
| 40 | :const:`AF_INET` address family, where *host* is a string representing either a
|
| 41 | hostname in Internet domain notation like ``'daring.cwi.nl'`` or an IPv4 address
|
| 42 | like ``'100.50.200.5'``, and *port* is an integral port number. For
|
| 43 | :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo,
|
| 44 | scopeid)`` is used, where *flowinfo* and *scopeid* represents ``sin6_flowinfo``
|
| 45 | and ``sin6_scope_id`` member in :const:`struct sockaddr_in6` in C. For
|
| 46 | :mod:`socket` module methods, *flowinfo* and *scopeid* can be omitted just for
|
| 47 | backward compatibility. Note, however, omission of *scopeid* can cause problems
|
| 48 | in manipulating scoped IPv6 addresses. Other address families are currently not
|
| 49 | supported. The address format required by a particular socket object is
|
| 50 | automatically selected based on the address family specified when the socket
|
| 51 | object was created.
|
| 52 |
|
| 53 | For IPv4 addresses, two special forms are accepted instead of a host address:
|
| 54 | the empty string represents :const:`INADDR_ANY`, and the string
|
| 55 | ``'<broadcast>'`` represents :const:`INADDR_BROADCAST`. The behavior is not
|
| 56 | available for IPv6 for backward compatibility, therefore, you may want to avoid
|
| 57 | these if you intend to support IPv6 with your Python programs.
|
| 58 |
|
| 59 | If you use a hostname in the *host* portion of IPv4/v6 socket address, the
|
| 60 | program may show a nondeterministic behavior, as Python uses the first address
|
| 61 | returned from the DNS resolution. The socket address will be resolved
|
| 62 | differently into an actual IPv4/v6 address, depending on the results from DNS
|
| 63 | resolution and/or the host configuration. For deterministic behavior use a
|
| 64 | numeric address in *host* portion.
|
| 65 |
|
| 66 | .. versionadded:: 2.5
|
| 67 | AF_NETLINK sockets are represented as pairs ``pid, groups``.
|
| 68 |
|
| 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 |
|
| 73 | Non-blocking mode is supported through :meth:`setblocking`. A generalization of
|
| 74 | this based on timeouts is supported through :meth:`settimeout`.
|
| 75 |
|
| 76 | The module :mod:`socket` exports the following constants and functions:
|
| 77 |
|
| 78 |
|
| 79 | .. exception:: error
|
| 80 |
|
| 81 | .. index:: module: errno
|
| 82 |
|
| 83 | This exception is raised for socket-related errors. The accompanying value is
|
| 84 | either a string telling what went wrong or a pair ``(errno, string)``
|
| 85 | representing an error returned by a system call, similar to the value
|
| 86 | accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names
|
| 87 | for the error codes defined by the underlying operating system.
|
| 88 |
|
| 89 | .. versionchanged:: 2.6
|
| 90 | :exc:`socket.error` is now a child class of :exc:`IOError`.
|
| 91 |
|
| 92 |
|
| 93 | .. exception:: herror
|
| 94 |
|
| 95 | This exception is raised for address-related errors, i.e. for functions that use
|
| 96 | *h_errno* in the C API, including :func:`gethostbyname_ex` and
|
| 97 | :func:`gethostbyaddr`.
|
| 98 |
|
| 99 | The accompanying value is a pair ``(h_errno, string)`` representing an error
|
| 100 | returned by a library call. *string* represents the description of *h_errno*, as
|
| 101 | returned by the :cfunc:`hstrerror` C function.
|
| 102 |
|
| 103 |
|
| 104 | .. exception:: gaierror
|
| 105 |
|
| 106 | This exception is raised for address-related errors, for :func:`getaddrinfo` and
|
| 107 | :func:`getnameinfo`. The accompanying value is a pair ``(error, string)``
|
| 108 | representing an error returned by a library call. *string* represents the
|
| 109 | description of *error*, as returned by the :cfunc:`gai_strerror` C function. The
|
| 110 | *error* value will match one of the :const:`EAI_\*` constants defined in this
|
| 111 | module.
|
| 112 |
|
| 113 |
|
| 114 | .. exception:: timeout
|
| 115 |
|
| 116 | This exception is raised when a timeout occurs on a socket which has had
|
| 117 | timeouts enabled via a prior call to :meth:`settimeout`. The accompanying value
|
| 118 | is a string whose value is currently always "timed out".
|
| 119 |
|
| 120 | .. versionadded:: 2.3
|
| 121 |
|
| 122 |
|
| 123 | .. data:: AF_UNIX
|
| 124 | AF_INET
|
| 125 | AF_INET6
|
| 126 |
|
| 127 | These constants represent the address (and protocol) families, used for the
|
| 128 | first argument to :func:`socket`. If the :const:`AF_UNIX` constant is not
|
| 129 | defined then this protocol is unsupported.
|
| 130 |
|
| 131 |
|
| 132 | .. data:: SOCK_STREAM
|
| 133 | SOCK_DGRAM
|
| 134 | SOCK_RAW
|
| 135 | SOCK_RDM
|
| 136 | SOCK_SEQPACKET
|
| 137 |
|
| 138 | These constants represent the socket types, used for the second argument to
|
| 139 | :func:`socket`. (Only :const:`SOCK_STREAM` and :const:`SOCK_DGRAM` appear to be
|
| 140 | generally useful.)
|
| 141 |
|
| 142 |
|
| 143 | .. data:: SO_*
|
| 144 | SOMAXCONN
|
| 145 | MSG_*
|
| 146 | SOL_*
|
| 147 | IPPROTO_*
|
| 148 | IPPORT_*
|
| 149 | INADDR_*
|
| 150 | IP_*
|
| 151 | IPV6_*
|
| 152 | EAI_*
|
| 153 | AI_*
|
| 154 | NI_*
|
| 155 | TCP_*
|
| 156 |
|
| 157 | Many constants of these forms, documented in the Unix documentation on sockets
|
| 158 | and/or the IP protocol, are also defined in the socket module. They are
|
| 159 | generally used in arguments to the :meth:`setsockopt` and :meth:`getsockopt`
|
| 160 | methods of socket objects. In most cases, only those symbols that are defined
|
| 161 | in the Unix header files are defined; for a few symbols, default values are
|
| 162 | provided.
|
| 163 |
|
| 164 | .. data:: SIO_*
|
| 165 | RCVALL_*
|
| 166 |
|
| 167 | Constants for Windows' WSAIoctl(). The constants are used as arguments to the
|
| 168 | :meth:`ioctl` method of socket objects.
|
| 169 |
|
| 170 | .. versionadded:: 2.6
|
| 171 |
|
| 172 |
|
| 173 | .. data:: has_ipv6
|
| 174 |
|
| 175 | This constant contains a boolean value which indicates if IPv6 is supported on
|
| 176 | this platform.
|
| 177 |
|
| 178 | .. versionadded:: 2.3
|
| 179 |
|
| 180 |
|
| 181 | .. function:: create_connection(address[, timeout])
|
| 182 |
|
| 183 | Connects to the *address* received (as usual, a ``(host, port)`` pair), with an
|
| 184 | optional timeout for the connection. Especially useful for higher-level
|
| 185 | protocols, it is not normally used directly from application-level code.
|
| 186 | Passing the optional *timeout* parameter will set the timeout on the socket
|
| 187 | instance (if it is not given or ``None``, the global default timeout setting is
|
| 188 | used).
|
| 189 |
|
| 190 | .. versionadded:: 2.6
|
| 191 |
|
| 192 |
|
| 193 | .. function:: getaddrinfo(host, port[, family[, socktype[, proto[, flags]]]])
|
| 194 |
|
| 195 | Resolves the *host*/*port* argument, into a sequence of 5-tuples that contain
|
| 196 | all the necessary argument for the sockets manipulation. *host* is a domain
|
| 197 | name, a string representation of IPv4/v6 address or ``None``. *port* is a string
|
| 198 | service name (like ``'http'``), a numeric port number or ``None``.
|
| 199 |
|
| 200 | The rest of the arguments are optional and must be numeric if specified. For
|
| 201 | *host* and *port*, by passing either an empty string or ``None``, you can pass
|
| 202 | ``NULL`` to the C API. The :func:`getaddrinfo` function returns a list of
|
| 203 | 5-tuples with the following structure:
|
| 204 |
|
| 205 | ``(family, socktype, proto, canonname, sockaddr)``
|
| 206 |
|
| 207 | *family*, *socktype*, *proto* are all integer and are meant to be passed to the
|
| 208 | :func:`socket` function. *canonname* is a string representing the canonical name
|
| 209 | of the *host*. It can be a numeric IPv4/v6 address when :const:`AI_CANONNAME` is
|
| 210 | specified for a numeric *host*. *sockaddr* is a tuple describing a socket
|
| 211 | address, as described above. See the source for :mod:`socket` and other
|
| 212 | library modules for a typical usage of the function.
|
| 213 |
|
| 214 | .. versionadded:: 2.2
|
| 215 |
|
| 216 |
|
| 217 | .. function:: getfqdn([name])
|
| 218 |
|
| 219 | Return a fully qualified domain name for *name*. If *name* is omitted or empty,
|
| 220 | it is interpreted as the local host. To find the fully qualified name, the
|
| 221 | hostname returned by :func:`gethostbyaddr` is checked, then aliases for the
|
| 222 | host, if available. The first name which includes a period is selected. In
|
| 223 | case no fully qualified domain name is available, the hostname as returned by
|
| 224 | :func:`gethostname` is returned.
|
| 225 |
|
| 226 | .. versionadded:: 2.0
|
| 227 |
|
| 228 |
|
| 229 | .. function:: gethostbyname(hostname)
|
| 230 |
|
| 231 | Translate a host name to IPv4 address format. The IPv4 address is returned as a
|
| 232 | string, such as ``'100.50.200.5'``. If the host name is an IPv4 address itself
|
| 233 | it is returned unchanged. See :func:`gethostbyname_ex` for a more complete
|
| 234 | interface. :func:`gethostbyname` does not support IPv6 name resolution, and
|
| 235 | :func:`getaddrinfo` should be used instead for IPv4/v6 dual stack support.
|
| 236 |
|
| 237 |
|
| 238 | .. function:: gethostbyname_ex(hostname)
|
| 239 |
|
| 240 | Translate a host name to IPv4 address format, extended interface. Return a
|
| 241 | triple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the primary
|
| 242 | host name responding to the given *ip_address*, *aliaslist* is a (possibly
|
| 243 | empty) list of alternative host names for the same address, and *ipaddrlist* is
|
| 244 | a list of IPv4 addresses for the same interface on the same host (often but not
|
| 245 | always a single address). :func:`gethostbyname_ex` does not support IPv6 name
|
| 246 | resolution, and :func:`getaddrinfo` should be used instead for IPv4/v6 dual
|
| 247 | stack support.
|
| 248 |
|
| 249 |
|
| 250 | .. function:: gethostname()
|
| 251 |
|
| 252 | Return a string containing the hostname of the machine where the Python
|
| 253 | interpreter is currently executing. If you want to know the current machine's IP
|
| 254 | address, you may want to use ``gethostbyname(gethostname())``. This operation
|
| 255 | assumes that there is a valid address-to-host mapping for the host, and the
|
| 256 | assumption does not always hold. Note: :func:`gethostname` doesn't always return
|
| 257 | the fully qualified domain name; use ``getfqdn()`` (see above).
|
| 258 |
|
| 259 |
|
| 260 | .. function:: gethostbyaddr(ip_address)
|
| 261 |
|
| 262 | Return a triple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the
|
| 263 | primary host name responding to the given *ip_address*, *aliaslist* is a
|
| 264 | (possibly empty) list of alternative host names for the same address, and
|
| 265 | *ipaddrlist* is a list of IPv4/v6 addresses for the same interface on the same
|
| 266 | host (most likely containing only a single address). To find the fully qualified
|
| 267 | domain name, use the function :func:`getfqdn`. :func:`gethostbyaddr` supports
|
| 268 | both IPv4 and IPv6.
|
| 269 |
|
| 270 |
|
| 271 | .. function:: getnameinfo(sockaddr, flags)
|
| 272 |
|
| 273 | Translate a socket address *sockaddr* into a 2-tuple ``(host, port)``. Depending
|
| 274 | on the settings of *flags*, the result can contain a fully-qualified domain name
|
| 275 | or numeric address representation in *host*. Similarly, *port* can contain a
|
| 276 | string port name or a numeric port number.
|
| 277 |
|
| 278 | .. versionadded:: 2.2
|
| 279 |
|
| 280 |
|
| 281 | .. function:: getprotobyname(protocolname)
|
| 282 |
|
| 283 | Translate an Internet protocol name (for example, ``'icmp'``) to a constant
|
| 284 | suitable for passing as the (optional) third argument to the :func:`socket`
|
| 285 | function. This is usually only needed for sockets opened in "raw" mode
|
| 286 | (:const:`SOCK_RAW`); for the normal socket modes, the correct protocol is chosen
|
| 287 | automatically if the protocol is omitted or zero.
|
| 288 |
|
| 289 |
|
| 290 | .. function:: getservbyname(servicename[, protocolname])
|
| 291 |
|
| 292 | Translate an Internet service name and protocol name to a port number for that
|
| 293 | service. The optional protocol name, if given, should be ``'tcp'`` or
|
| 294 | ``'udp'``, otherwise any protocol will match.
|
| 295 |
|
| 296 |
|
| 297 | .. function:: getservbyport(port[, protocolname])
|
| 298 |
|
| 299 | Translate an Internet port number and protocol name to a service name for that
|
| 300 | service. The optional protocol name, if given, should be ``'tcp'`` or
|
| 301 | ``'udp'``, otherwise any protocol will match.
|
| 302 |
|
| 303 |
|
| 304 | .. function:: socket([family[, type[, proto]]])
|
| 305 |
|
| 306 | Create a new socket using the given address family, socket type and protocol
|
| 307 | number. The address family should be :const:`AF_INET` (the default),
|
| 308 | :const:`AF_INET6` or :const:`AF_UNIX`. The socket type should be
|
| 309 | :const:`SOCK_STREAM` (the default), :const:`SOCK_DGRAM` or perhaps one of the
|
| 310 | other ``SOCK_`` constants. The protocol number is usually zero and may be
|
| 311 | omitted in that case.
|
| 312 |
|
| 313 |
|
| 314 | .. function:: socketpair([family[, type[, proto]]])
|
| 315 |
|
| 316 | Build a pair of connected socket objects using the given address family, socket
|
| 317 | type, and protocol number. Address family, socket type, and protocol number are
|
| 318 | as for the :func:`socket` function above. The default family is :const:`AF_UNIX`
|
| 319 | if defined on the platform; otherwise, the default is :const:`AF_INET`.
|
| 320 | Availability: Unix.
|
| 321 |
|
| 322 | .. versionadded:: 2.4
|
| 323 |
|
| 324 |
|
| 325 | .. function:: fromfd(fd, family, type[, proto])
|
| 326 |
|
| 327 | Duplicate the file descriptor *fd* (an integer as returned by a file object's
|
| 328 | :meth:`fileno` method) and build a socket object from the result. Address
|
| 329 | family, socket type and protocol number are as for the :func:`socket` function
|
| 330 | above. The file descriptor should refer to a socket, but this is not checked ---
|
| 331 | subsequent operations on the object may fail if the file descriptor is invalid.
|
| 332 | This function is rarely needed, but can be used to get or set socket options on
|
| 333 | a socket passed to a program as standard input or output (such as a server
|
| 334 | started by the Unix inet daemon). The socket is assumed to be in blocking mode.
|
| 335 | Availability: Unix.
|
| 336 |
|
| 337 |
|
| 338 | .. function:: ntohl(x)
|
| 339 |
|
| 340 | Convert 32-bit positive integers from network to host byte order. On machines
|
| 341 | where the host byte order is the same as network byte order, this is a no-op;
|
| 342 | otherwise, it performs a 4-byte swap operation.
|
| 343 |
|
| 344 |
|
| 345 | .. function:: ntohs(x)
|
| 346 |
|
| 347 | Convert 16-bit positive integers from network to host byte order. On machines
|
| 348 | where the host byte order is the same as network byte order, this is a no-op;
|
| 349 | otherwise, it performs a 2-byte swap operation.
|
| 350 |
|
| 351 |
|
| 352 | .. function:: htonl(x)
|
| 353 |
|
| 354 | Convert 32-bit positive integers from host to network byte order. On machines
|
| 355 | where the host byte order is the same as network byte order, this is a no-op;
|
| 356 | otherwise, it performs a 4-byte swap operation.
|
| 357 |
|
| 358 |
|
| 359 | .. function:: htons(x)
|
| 360 |
|
| 361 | Convert 16-bit positive integers from host to network byte order. On machines
|
| 362 | where the host byte order is the same as network byte order, this is a no-op;
|
| 363 | otherwise, it performs a 2-byte swap operation.
|
| 364 |
|
| 365 |
|
| 366 | .. function:: inet_aton(ip_string)
|
| 367 |
|
| 368 | Convert an IPv4 address from dotted-quad string format (for example,
|
| 369 | '123.45.67.89') to 32-bit packed binary format, as a string four characters in
|
| 370 | length. This is useful when conversing with a program that uses the standard C
|
| 371 | library and needs objects of type :ctype:`struct in_addr`, which is the C type
|
| 372 | for the 32-bit packed binary this function returns.
|
| 373 |
|
| 374 | If the IPv4 address string passed to this function is invalid,
|
| 375 | :exc:`socket.error` will be raised. Note that exactly what is valid depends on
|
| 376 | the underlying C implementation of :cfunc:`inet_aton`.
|
| 377 |
|
| 378 | :func:`inet_aton` does not support IPv6, and :func:`getnameinfo` should be used
|
| 379 | instead for IPv4/v6 dual stack support.
|
| 380 |
|
| 381 |
|
| 382 | .. function:: inet_ntoa(packed_ip)
|
| 383 |
|
| 384 | Convert a 32-bit packed IPv4 address (a string four characters in length) to its
|
| 385 | standard dotted-quad string representation (for example, '123.45.67.89'). This
|
| 386 | is useful when conversing with a program that uses the standard C library and
|
| 387 | needs objects of type :ctype:`struct in_addr`, which is the C type for the
|
| 388 | 32-bit packed binary data this function takes as an argument.
|
| 389 |
|
| 390 | If the string passed to this function is not exactly 4 bytes in length,
|
| 391 | :exc:`socket.error` will be raised. :func:`inet_ntoa` does not support IPv6, and
|
| 392 | :func:`getnameinfo` should be used instead for IPv4/v6 dual stack support.
|
| 393 |
|
| 394 |
|
| 395 | .. function:: inet_pton(address_family, ip_string)
|
| 396 |
|
| 397 | Convert an IP address from its family-specific string format to a packed, binary
|
| 398 | format. :func:`inet_pton` is useful when a library or network protocol calls for
|
| 399 | an object of type :ctype:`struct in_addr` (similar to :func:`inet_aton`) or
|
| 400 | :ctype:`struct in6_addr`.
|
| 401 |
|
| 402 | Supported values for *address_family* are currently :const:`AF_INET` and
|
| 403 | :const:`AF_INET6`. If the IP address string *ip_string* is invalid,
|
| 404 | :exc:`socket.error` will be raised. Note that exactly what is valid depends on
|
| 405 | both the value of *address_family* and the underlying implementation of
|
| 406 | :cfunc:`inet_pton`.
|
| 407 |
|
| 408 | Availability: Unix (maybe not all platforms).
|
| 409 |
|
| 410 | .. versionadded:: 2.3
|
| 411 |
|
| 412 |
|
| 413 | .. function:: inet_ntop(address_family, packed_ip)
|
| 414 |
|
| 415 | Convert a packed IP address (a string of some number of characters) to its
|
| 416 | standard, family-specific string representation (for example, ``'7.10.0.5'`` or
|
| 417 | ``'5aef:2b::8'``) :func:`inet_ntop` is useful when a library or network protocol
|
| 418 | returns an object of type :ctype:`struct in_addr` (similar to :func:`inet_ntoa`)
|
| 419 | or :ctype:`struct in6_addr`.
|
| 420 |
|
| 421 | Supported values for *address_family* are currently :const:`AF_INET` and
|
| 422 | :const:`AF_INET6`. If the string *packed_ip* is not the correct length for the
|
| 423 | specified address family, :exc:`ValueError` will be raised. A
|
| 424 | :exc:`socket.error` is raised for errors from the call to :func:`inet_ntop`.
|
| 425 |
|
| 426 | Availability: Unix (maybe not all platforms).
|
| 427 |
|
| 428 | .. versionadded:: 2.3
|
| 429 |
|
| 430 |
|
| 431 | .. function:: getdefaulttimeout()
|
| 432 |
|
| 433 | Return the default timeout in floating seconds for new socket objects. A value
|
| 434 | of ``None`` indicates that new socket objects have no timeout. When the socket
|
| 435 | module is first imported, the default is ``None``.
|
| 436 |
|
| 437 | .. versionadded:: 2.3
|
| 438 |
|
| 439 |
|
| 440 | .. function:: setdefaulttimeout(timeout)
|
| 441 |
|
| 442 | Set the default timeout in floating seconds for new socket objects. A value of
|
| 443 | ``None`` indicates that new socket objects have no timeout. When the socket
|
| 444 | module is first imported, the default is ``None``.
|
| 445 |
|
| 446 | .. versionadded:: 2.3
|
| 447 |
|
| 448 |
|
| 449 | .. data:: SocketType
|
| 450 |
|
| 451 | This is a Python type object that represents the socket object type. It is the
|
| 452 | same as ``type(socket(...))``.
|
| 453 |
|
| 454 |
|
| 455 | .. seealso::
|
| 456 |
|
| 457 | Module :mod:`SocketServer`
|
| 458 | Classes that simplify writing network servers.
|
| 459 |
|
| 460 |
|
| 461 | .. _socket-objects:
|
| 462 |
|
| 463 | Socket Objects
|
| 464 | --------------
|
| 465 |
|
| 466 | Socket objects have the following methods. Except for :meth:`makefile` these
|
| 467 | correspond to Unix system calls applicable to sockets.
|
| 468 |
|
| 469 |
|
| 470 | .. method:: socket.accept()
|
| 471 |
|
| 472 | Accept a connection. The socket must be bound to an address and listening for
|
| 473 | connections. The return value is a pair ``(conn, address)`` where *conn* is a
|
| 474 | *new* socket object usable to send and receive data on the connection, and
|
| 475 | *address* is the address bound to the socket on the other end of the connection.
|
| 476 |
|
| 477 |
|
| 478 | .. method:: socket.bind(address)
|
| 479 |
|
| 480 | Bind the socket to *address*. The socket must not already be bound. (The format
|
| 481 | of *address* depends on the address family --- see above.)
|
| 482 |
|
| 483 | .. note::
|
| 484 |
|
| 485 | This method has historically accepted a pair of parameters for :const:`AF_INET`
|
| 486 | addresses instead of only a tuple. This was never intentional and is no longer
|
| 487 | available in Python 2.0 and later.
|
| 488 |
|
| 489 |
|
| 490 | .. method:: socket.close()
|
| 491 |
|
| 492 | Close the socket. All future operations on the socket object will fail. The
|
| 493 | remote end will receive no more data (after queued data is flushed). Sockets are
|
| 494 | automatically closed when they are garbage-collected.
|
| 495 |
|
| 496 |
|
| 497 | .. method:: socket.connect(address)
|
| 498 |
|
| 499 | Connect to a remote socket at *address*. (The format of *address* depends on the
|
| 500 | address family --- see above.)
|
| 501 |
|
| 502 | .. note::
|
| 503 |
|
| 504 | This method has historically accepted a pair of parameters for :const:`AF_INET`
|
| 505 | addresses instead of only a tuple. This was never intentional and is no longer
|
| 506 | available in Python 2.0 and later.
|
| 507 |
|
| 508 |
|
| 509 | .. method:: socket.connect_ex(address)
|
| 510 |
|
| 511 | Like ``connect(address)``, but return an error indicator instead of raising an
|
| 512 | exception for errors returned by the C-level :cfunc:`connect` call (other
|
| 513 | problems, such as "host not found," can still raise exceptions). The error
|
| 514 | indicator is ``0`` if the operation succeeded, otherwise the value of the
|
| 515 | :cdata:`errno` variable. This is useful to support, for example, asynchronous
|
| 516 | connects.
|
| 517 |
|
| 518 | .. note::
|
| 519 |
|
| 520 | This method has historically accepted a pair of parameters for :const:`AF_INET`
|
| 521 | addresses instead of only a tuple. This was never intentional and is no longer
|
| 522 | available in Python 2.0 and later.
|
| 523 |
|
| 524 |
|
| 525 | .. method:: socket.fileno()
|
| 526 |
|
| 527 | Return the socket's file descriptor (a small integer). This is useful with
|
| 528 | :func:`select.select`.
|
| 529 |
|
| 530 | Under Windows the small integer returned by this method cannot be used where a
|
| 531 | file descriptor can be used (such as :func:`os.fdopen`). Unix does not have
|
| 532 | this limitation.
|
| 533 |
|
| 534 |
|
| 535 | .. method:: socket.getpeername()
|
| 536 |
|
| 537 | Return the remote address to which the socket is connected. This is useful to
|
| 538 | find out the port number of a remote IPv4/v6 socket, for instance. (The format
|
| 539 | of the address returned depends on the address family --- see above.) On some
|
| 540 | systems this function is not supported.
|
| 541 |
|
| 542 |
|
| 543 | .. method:: socket.getsockname()
|
| 544 |
|
| 545 | Return the socket's own address. This is useful to find out the port number of
|
| 546 | an IPv4/v6 socket, for instance. (The format of the address returned depends on
|
| 547 | the address family --- see above.)
|
| 548 |
|
| 549 |
|
| 550 | .. method:: socket.getsockopt(level, optname[, buflen])
|
| 551 |
|
| 552 | Return the value of the given socket option (see the Unix man page
|
| 553 | :manpage:`getsockopt(2)`). The needed symbolic constants (:const:`SO_\*` etc.)
|
| 554 | are defined in this module. If *buflen* is absent, an integer option is assumed
|
| 555 | and its integer value is returned by the function. If *buflen* is present, it
|
| 556 | specifies the maximum length of the buffer used to receive the option in, and
|
| 557 | this buffer is returned as a string. It is up to the caller to decode the
|
| 558 | contents of the buffer (see the optional built-in module :mod:`struct` for a way
|
| 559 | to decode C structures encoded as strings).
|
| 560 |
|
| 561 |
|
| 562 | .. method:: socket.ioctl(control, option)
|
| 563 |
|
| 564 | :platform: Windows
|
| 565 |
|
| 566 | The `meth:ioctl` method is a limited interface to the WSAIoctl system
|
| 567 | interface. Please refer to the MSDN documentation for more information.
|
| 568 |
|
| 569 | .. versionadded:: 2.6
|
| 570 |
|
| 571 |
|
| 572 | .. method:: socket.listen(backlog)
|
| 573 |
|
| 574 | Listen for connections made to the socket. The *backlog* argument specifies the
|
| 575 | maximum number of queued connections and should be at least 1; the maximum value
|
| 576 | is system-dependent (usually 5).
|
| 577 |
|
| 578 |
|
| 579 | .. method:: socket.makefile([mode[, bufsize]])
|
| 580 |
|
| 581 | .. index:: single: I/O control; buffering
|
| 582 |
|
| 583 | Return a :dfn:`file object` associated with the socket. (File objects are
|
| 584 | described in :ref:`bltin-file-objects`.) The file object
|
| 585 | references a :cfunc:`dup`\ ped version of the socket file descriptor, so the
|
| 586 | file object and socket object may be closed or garbage-collected independently.
|
| 587 | The socket must be in blocking mode (it can not have a timeout). The optional
|
| 588 | *mode* and *bufsize* arguments are interpreted the same way as by the built-in
|
| 589 | :func:`file` function.
|
| 590 |
|
| 591 |
|
| 592 | .. method:: socket.recv(bufsize[, flags])
|
| 593 |
|
| 594 | Receive data from the socket. The return value is a string representing the
|
| 595 | data received. The maximum amount of data to be received at once is specified
|
| 596 | by *bufsize*. See the Unix manual page :manpage:`recv(2)` for the meaning of
|
| 597 | the optional argument *flags*; it defaults to zero.
|
| 598 |
|
| 599 | .. note::
|
| 600 |
|
| 601 | For best match with hardware and network realities, the value of *bufsize*
|
| 602 | should be a relatively small power of 2, for example, 4096.
|
| 603 |
|
| 604 |
|
| 605 | .. method:: socket.recvfrom(bufsize[, flags])
|
| 606 |
|
| 607 | Receive data from the socket. The return value is a pair ``(string, address)``
|
| 608 | where *string* is a string representing the data received and *address* is the
|
| 609 | address of the socket sending the data. See the Unix manual page
|
| 610 | :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults
|
| 611 | to zero. (The format of *address* depends on the address family --- see above.)
|
| 612 |
|
| 613 |
|
| 614 | .. method:: socket.recvfrom_into(buffer[, nbytes[, flags]])
|
| 615 |
|
| 616 | Receive data from the socket, writing it into *buffer* instead of creating a
|
| 617 | new string. The return value is a pair ``(nbytes, address)`` where *nbytes* is
|
| 618 | the number of bytes received and *address* is the address of the socket sending
|
| 619 | the data. See the Unix manual page :manpage:`recv(2)` for the meaning of the
|
| 620 | optional argument *flags*; it defaults to zero. (The format of *address*
|
| 621 | depends on the address family --- see above.)
|
| 622 |
|
| 623 | .. versionadded:: 2.5
|
| 624 |
|
| 625 |
|
| 626 | .. method:: socket.recv_into(buffer[, nbytes[, flags]])
|
| 627 |
|
| 628 | Receive up to *nbytes* bytes from the socket, storing the data into a buffer
|
| 629 | rather than creating a new string. If *nbytes* is not specified (or 0),
|
| 630 | receive up to the size available in the given buffer. See the Unix manual page
|
| 631 | :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults
|
| 632 | to zero.
|
| 633 |
|
| 634 | .. versionadded:: 2.5
|
| 635 |
|
| 636 |
|
| 637 | .. method:: socket.send(string[, flags])
|
| 638 |
|
| 639 | Send data to the socket. The socket must be connected to a remote socket. The
|
| 640 | optional *flags* argument has the same meaning as for :meth:`recv` above.
|
| 641 | Returns the number of bytes sent. Applications are responsible for checking that
|
| 642 | all data has been sent; if only some of the data was transmitted, the
|
| 643 | application needs to attempt delivery of the remaining data.
|
| 644 |
|
| 645 |
|
| 646 | .. method:: socket.sendall(string[, flags])
|
| 647 |
|
| 648 | Send data to the socket. The socket must be connected to a remote socket. The
|
| 649 | optional *flags* argument has the same meaning as for :meth:`recv` above.
|
| 650 | Unlike :meth:`send`, this method continues to send data from *string* until
|
| 651 | either all data has been sent or an error occurs. ``None`` is returned on
|
| 652 | success. On error, an exception is raised, and there is no way to determine how
|
| 653 | much data, if any, was successfully sent.
|
| 654 |
|
| 655 |
|
| 656 | .. method:: socket.sendto(string[, flags], address)
|
| 657 |
|
| 658 | Send data to the socket. The socket should not be connected to a remote socket,
|
| 659 | since the destination socket is specified by *address*. The optional *flags*
|
| 660 | argument has the same meaning as for :meth:`recv` above. Return the number of
|
| 661 | bytes sent. (The format of *address* depends on the address family --- see
|
| 662 | above.)
|
| 663 |
|
| 664 |
|
| 665 | .. method:: socket.setblocking(flag)
|
| 666 |
|
| 667 | Set blocking or non-blocking mode of the socket: if *flag* is 0, the socket is
|
| 668 | set to non-blocking, else to blocking mode. Initially all sockets are in
|
| 669 | blocking mode. In non-blocking mode, if a :meth:`recv` call doesn't find any
|
| 670 | data, or if a :meth:`send` call can't immediately dispose of the data, a
|
| 671 | :exc:`error` exception is raised; in blocking mode, the calls block until they
|
| 672 | can proceed. ``s.setblocking(0)`` is equivalent to ``s.settimeout(0)``;
|
| 673 | ``s.setblocking(1)`` is equivalent to ``s.settimeout(None)``.
|
| 674 |
|
| 675 |
|
| 676 | .. method:: socket.settimeout(value)
|
| 677 |
|
| 678 | Set a timeout on blocking socket operations. The *value* argument can be a
|
| 679 | nonnegative float expressing seconds, or ``None``. If a float is given,
|
| 680 | subsequent socket operations will raise an :exc:`timeout` exception if the
|
| 681 | timeout period *value* has elapsed before the operation has completed. Setting
|
| 682 | a timeout of ``None`` disables timeouts on socket operations.
|
| 683 | ``s.settimeout(0.0)`` is equivalent to ``s.setblocking(0)``;
|
| 684 | ``s.settimeout(None)`` is equivalent to ``s.setblocking(1)``.
|
| 685 |
|
| 686 | .. versionadded:: 2.3
|
| 687 |
|
| 688 |
|
| 689 | .. method:: socket.gettimeout()
|
| 690 |
|
| 691 | Return the timeout in floating seconds associated with socket operations, or
|
| 692 | ``None`` if no timeout is set. This reflects the last call to
|
| 693 | :meth:`setblocking` or :meth:`settimeout`.
|
| 694 |
|
| 695 | .. versionadded:: 2.3
|
| 696 |
|
| 697 | Some notes on socket blocking and timeouts: A socket object can be in one of
|
| 698 | three modes: blocking, non-blocking, or timeout. Sockets are always created in
|
| 699 | blocking mode. In blocking mode, operations block until complete. In
|
| 700 | non-blocking mode, operations fail (with an error that is unfortunately
|
| 701 | system-dependent) if they cannot be completed immediately. In timeout mode,
|
| 702 | operations fail if they cannot be completed within the timeout specified for the
|
| 703 | socket. The :meth:`setblocking` method is simply a shorthand for certain
|
| 704 | :meth:`settimeout` calls.
|
| 705 |
|
| 706 | Timeout mode internally sets the socket in non-blocking mode. The blocking and
|
| 707 | timeout modes are shared between file descriptors and socket objects that refer
|
| 708 | to the same network endpoint. A consequence of this is that file objects
|
| 709 | returned by the :meth:`makefile` method must only be used when the socket is in
|
| 710 | blocking mode; in timeout or non-blocking mode file operations that cannot be
|
| 711 | completed immediately will fail.
|
| 712 |
|
| 713 | Note that the :meth:`connect` operation is subject to the timeout setting, and
|
| 714 | in general it is recommended to call :meth:`settimeout` before calling
|
| 715 | :meth:`connect`.
|
| 716 |
|
| 717 |
|
| 718 | .. method:: socket.setsockopt(level, optname, value)
|
| 719 |
|
| 720 | .. index:: module: struct
|
| 721 |
|
| 722 | Set the value of the given socket option (see the Unix manual page
|
| 723 | :manpage:`setsockopt(2)`). The needed symbolic constants are defined in the
|
| 724 | :mod:`socket` module (:const:`SO_\*` etc.). The value can be an integer or a
|
| 725 | string representing a buffer. In the latter case it is up to the caller to
|
| 726 | ensure that the string contains the proper bits (see the optional built-in
|
| 727 | module :mod:`struct` for a way to encode C structures as strings).
|
| 728 |
|
| 729 |
|
| 730 | .. method:: socket.shutdown(how)
|
| 731 |
|
| 732 | Shut down one or both halves of the connection. If *how* is :const:`SHUT_RD`,
|
| 733 | further receives are disallowed. If *how* is :const:`SHUT_WR`, further sends
|
| 734 | are disallowed. If *how* is :const:`SHUT_RDWR`, further sends and receives are
|
| 735 | disallowed.
|
| 736 |
|
| 737 | Note that there are no methods :meth:`read` or :meth:`write`; use :meth:`recv`
|
| 738 | and :meth:`send` without *flags* argument instead.
|
| 739 |
|
| 740 | Socket objects also have these (read-only) attributes that correspond to the
|
| 741 | values given to the :class:`socket` constructor.
|
| 742 |
|
| 743 |
|
| 744 | .. attribute:: socket.family
|
| 745 |
|
| 746 | The socket family.
|
| 747 |
|
| 748 | .. versionadded:: 2.5
|
| 749 |
|
| 750 |
|
| 751 | .. attribute:: socket.type
|
| 752 |
|
| 753 | The socket type.
|
| 754 |
|
| 755 | .. versionadded:: 2.5
|
| 756 |
|
| 757 |
|
| 758 | .. attribute:: socket.proto
|
| 759 |
|
| 760 | The socket protocol.
|
| 761 |
|
| 762 | .. versionadded:: 2.5
|
| 763 |
|
| 764 |
|
| 765 | .. _socket-example:
|
| 766 |
|
| 767 | Example
|
| 768 | -------
|
| 769 |
|
| 770 | Here are four minimal example programs using the TCP/IP protocol: a server that
|
| 771 | echoes all data that it receives back (servicing only one client), and a client
|
| 772 | using it. Note that a server must perform the sequence :func:`socket`,
|
| 773 | :meth:`bind`, :meth:`listen`, :meth:`accept` (possibly repeating the
|
| 774 | :meth:`accept` to service more than one client), while a client only needs the
|
| 775 | sequence :func:`socket`, :meth:`connect`. Also note that the server does not
|
| 776 | :meth:`send`/:meth:`recv` on the socket it is listening on but on the new
|
| 777 | socket returned by :meth:`accept`.
|
| 778 |
|
| 779 | The first two examples support IPv4 only. ::
|
| 780 |
|
| 781 | # Echo server program
|
| 782 | import socket
|
| 783 |
|
| 784 | HOST = '' # Symbolic name meaning the local host
|
| 785 | PORT = 50007 # Arbitrary non-privileged port
|
| 786 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
| 787 | s.bind((HOST, PORT))
|
| 788 | s.listen(1)
|
| 789 | conn, addr = s.accept()
|
| 790 | print 'Connected by', addr
|
| 791 | while 1:
|
| 792 | data = conn.recv(1024)
|
| 793 | if not data: break
|
| 794 | conn.send(data)
|
| 795 | conn.close()
|
| 796 |
|
| 797 | ::
|
| 798 |
|
| 799 | # Echo client program
|
| 800 | import socket
|
| 801 |
|
| 802 | HOST = 'daring.cwi.nl' # The remote host
|
| 803 | PORT = 50007 # The same port as used by the server
|
| 804 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
| 805 | s.connect((HOST, PORT))
|
| 806 | s.send('Hello, world')
|
| 807 | data = s.recv(1024)
|
| 808 | s.close()
|
| 809 | print 'Received', repr(data)
|
| 810 |
|
| 811 | The next two examples are identical to the above two, but support both IPv4 and
|
| 812 | IPv6. The server side will listen to the first address family available (it
|
| 813 | should listen to both instead). On most of IPv6-ready systems, IPv6 will take
|
| 814 | precedence and the server may not accept IPv4 traffic. The client side will try
|
| 815 | to connect to the all addresses returned as a result of the name resolution, and
|
| 816 | sends traffic to the first one connected successfully. ::
|
| 817 |
|
| 818 | # Echo server program
|
| 819 | import socket
|
| 820 | import sys
|
| 821 |
|
| 822 | HOST = '' # Symbolic name meaning the local host
|
| 823 | PORT = 50007 # Arbitrary non-privileged port
|
| 824 | s = None
|
| 825 | for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, socket.SOCK_STREAM, 0, socket.AI_PASSIVE):
|
| 826 | af, socktype, proto, canonname, sa = res
|
| 827 | try:
|
| 828 | s = socket.socket(af, socktype, proto)
|
| 829 | except socket.error, msg:
|
| 830 | s = None
|
| 831 | continue
|
| 832 | try:
|
| 833 | s.bind(sa)
|
| 834 | s.listen(1)
|
| 835 | except socket.error, msg:
|
| 836 | s.close()
|
| 837 | s = None
|
| 838 | continue
|
| 839 | break
|
| 840 | if s is None:
|
| 841 | print 'could not open socket'
|
| 842 | sys.exit(1)
|
| 843 | conn, addr = s.accept()
|
| 844 | print 'Connected by', addr
|
| 845 | while 1:
|
| 846 | data = conn.recv(1024)
|
| 847 | if not data: break
|
| 848 | conn.send(data)
|
| 849 | conn.close()
|
| 850 |
|
| 851 | ::
|
| 852 |
|
| 853 | # Echo client program
|
| 854 | import socket
|
| 855 | import sys
|
| 856 |
|
| 857 | HOST = 'daring.cwi.nl' # The remote host
|
| 858 | PORT = 50007 # The same port as used by the server
|
| 859 | s = None
|
| 860 | for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, socket.SOCK_STREAM):
|
| 861 | af, socktype, proto, canonname, sa = res
|
| 862 | try:
|
| 863 | s = socket.socket(af, socktype, proto)
|
| 864 | except socket.error, msg:
|
| 865 | s = None
|
| 866 | continue
|
| 867 | try:
|
| 868 | s.connect(sa)
|
| 869 | except socket.error, msg:
|
| 870 | s.close()
|
| 871 | s = None
|
| 872 | continue
|
| 873 | break
|
| 874 | if s is None:
|
| 875 | print 'could not open socket'
|
| 876 | sys.exit(1)
|
| 877 | s.send('Hello, world')
|
| 878 | data = s.recv(1024)
|
| 879 | s.close()
|
| 880 | print 'Received', repr(data)
|
| 881 |
|
| 882 |
|
| 883 | The last example shows how to write a very simple network sniffer with raw
|
| 884 | sockets on Windows. The example requires administrator priviliges to modify
|
| 885 | the interface::
|
| 886 |
|
| 887 | import socket
|
| 888 |
|
| 889 | # the public network interface
|
| 890 | HOST = socket.gethostbyname(socket.gethostname())
|
| 891 |
|
| 892 | # create a raw socket and bind it to the public interface
|
| 893 | s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_IP)
|
| 894 | s.bind((HOST, 0))
|
| 895 |
|
| 896 | # Include IP headers
|
| 897 | s.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1)
|
| 898 |
|
| 899 | # receive all packages
|
| 900 | s.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON)
|
| 901 |
|
| 902 | # receive a package
|
| 903 | print s.recvfrom(65565)
|
| 904 |
|
| 905 | # disabled promiscous mode
|
| 906 | s.ioctl(socket.SIO_RCVALL, socket.RCVALL_OFF)
|