Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{socket} --- |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 2 | Low-level networking interface} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 4 | \declaremodule{builtin}{socket} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 5 | \modulesynopsis{Low-level networking interface.} |
| 6 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 7 | |
Fred Drake | af8a015 | 1998-01-14 14:51:31 +0000 | [diff] [blame] | 8 | This module provides access to the BSD \emph{socket} interface. |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 9 | It is available on all modern \UNIX{} systems, Windows, MacOS, BeOS, |
| 10 | OS/2, and probably additional platforms. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 11 | |
| 12 | For an introduction to socket programming (in C), see the following |
Fred Drake | 37f1574 | 1999-11-10 16:21:37 +0000 | [diff] [blame] | 13 | papers: \citetitle{An Introductory 4.3BSD Interprocess Communication |
| 14 | Tutorial}, by Stuart Sechrest and \citetitle{An Advanced 4.3BSD |
| 15 | Interprocess Communication Tutorial}, by Samuel J. Leffler et al, |
| 16 | both in the \citetitle{\UNIX{} Programmer's Manual, Supplementary Documents 1} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 17 | (sections PS1:7 and PS1:8). The platform-specific reference material |
| 18 | for the various socket-related system calls are also a valuable source |
| 19 | of information on the details of socket semantics. For \UNIX, refer |
| 20 | to the manual pages; for Windows, see the WinSock (or Winsock 2) |
| 21 | specification. |
Fred Drake | 3fc291a | 2001-09-27 04:17:20 +0000 | [diff] [blame] | 22 | For IPv6-ready APIs, readers may want to refer to \rfc{2553} titled |
| 23 | \citetitle{Basic Socket Interface Extensions for IPv6}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 24 | |
| 25 | The Python interface is a straightforward transliteration of the |
| 26 | \UNIX{} system call and library interface for sockets to Python's |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 27 | object-oriented style: the \function{socket()} function returns a |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 28 | \dfn{socket object}\obindex{socket} whose methods implement the |
| 29 | various socket system calls. Parameter types are somewhat |
| 30 | higher-level than in the C interface: as with \method{read()} and |
| 31 | \method{write()} operations on Python files, buffer allocation on |
| 32 | receive operations is automatic, and buffer length is implicit on send |
| 33 | operations. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 34 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 35 | Socket addresses are represented as follows: |
| 36 | A single string is used for the \constant{AF_UNIX} address family. |
| 37 | A pair \code{(\var{host}, \var{port})} is used for the |
| 38 | \constant{AF_INET} address family, where \var{host} is a string |
| 39 | representing either a hostname in Internet domain notation like |
| 40 | \code{'daring.cwi.nl'} or an IPv4 address like \code{'100.50.200.5'}, |
| 41 | and \var{port} is an integral port number. |
| 42 | For \constant{AF_INET6} address family, a four-tuple |
| 43 | \code{(\var{host}, \var{port}, \var{flowinfo}, \var{scopeid})} is |
| 44 | used, where \var{flowinfo} and \var{scopeid} represents |
| 45 | \code{sin6_flowinfo} and \code{sin6_scope_id} member in |
| 46 | \constant{struct sockaddr_in6} in C. |
| 47 | For \module{socket} module methods, \var{flowinfo} and \var{scopeid} |
| 48 | can be omitted just for backward compatibility. Note, however, |
| 49 | omission of \var{scopeid} can cause problems in manipulating scoped |
| 50 | IPv6 addresses. Other address families are currently not supported. |
| 51 | The address format required by a particular socket object is |
| 52 | automatically selected based on the address family specified when the |
| 53 | socket object was created. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 54 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 55 | For IPv4 addresses, two special forms are accepted instead of a host |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 56 | address: the empty string represents \constant{INADDR_ANY}, and the string |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 57 | \code{'<broadcast>'} represents \constant{INADDR_BROADCAST}. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 58 | The behavior is not available for IPv6 for backward compatibility, |
| 59 | therefore, you may want to avoid these if you intend to support IPv6 with |
| 60 | your Python programs. |
| 61 | |
| 62 | If you use a hostname in the \var{host} portion of IPv4/v6 socket |
| 63 | address, the program may show a nondeterministic behavior, as Python |
| 64 | uses the first address returned from the DNS resolution. The socket |
| 65 | address will be resolved differently into an actual IPv4/v6 address, |
| 66 | depending on the results from DNS resolution and/or the host |
| 67 | configuration. For deterministic behavior use a numeric address in |
| 68 | \var{host} portion. |
Guido van Rossum | e4f347e | 1997-05-09 02:21:51 +0000 | [diff] [blame] | 69 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 70 | All errors raise exceptions. The normal exceptions for invalid |
| 71 | argument types and out-of-memory conditions can be raised; errors |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 72 | related to socket or address semantics raise the error |
| 73 | \exception{socket.error}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 74 | |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 75 | Non-blocking mode is supported through the |
| 76 | \method{setblocking()} method. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 77 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 78 | The module \module{socket} exports the following constants and functions: |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 79 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 80 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 81 | \begin{excdesc}{error} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 82 | This exception is raised for socket-related errors. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 83 | The accompanying value is either a string telling what went wrong or a |
| 84 | pair \code{(\var{errno}, \var{string})} |
| 85 | representing an error returned by a system |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 86 | call, similar to the value accompanying \exception{os.error}. |
| 87 | See the module \refmodule{errno}\refbimodindex{errno}, which contains |
Guido van Rossum | 8e1e68d | 1998-02-06 15:18:25 +0000 | [diff] [blame] | 88 | names for the error codes defined by the underlying operating system. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 89 | \end{excdesc} |
| 90 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 91 | \begin{excdesc}{herror} |
| 92 | This exception is raised for address-related errors, i.e. for |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 93 | functions that use \var{h_errno} in the C API, including |
| 94 | \function{gethostbyname_ex()} and \function{gethostbyaddr()}. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 95 | |
| 96 | The accompanying value is a pair \code{(\var{h_errno}, \var{string})} |
| 97 | representing an error returned by a library call. \var{string} |
| 98 | represents the description of \var{h_errno}, as returned by |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 99 | the \cfunction{hstrerror()} C function. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 100 | \end{excdesc} |
| 101 | |
| 102 | \begin{excdesc}{gaierror} |
| 103 | This exception is raised for address-related errors, for |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 104 | \function{getaddrinfo()} and \function{getnameinfo()}. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 105 | The accompanying value is a pair \code{(\var{error}, \var{string})} |
| 106 | representing an error returned by a library call. |
| 107 | \var{string} represents the description of \var{error}, as returned |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 108 | by the \cfunction{gai_strerror()} C function. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 109 | \end{excdesc} |
| 110 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 111 | \begin{datadesc}{AF_UNIX} |
| 112 | \dataline{AF_INET} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 113 | \dataline{AF_INET6} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 114 | These constants represent the address (and protocol) families, |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 115 | used for the first argument to \function{socket()}. If the |
| 116 | \constant{AF_UNIX} constant is not defined then this protocol is |
| 117 | unsupported. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 118 | \end{datadesc} |
| 119 | |
| 120 | \begin{datadesc}{SOCK_STREAM} |
| 121 | \dataline{SOCK_DGRAM} |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 122 | \dataline{SOCK_RAW} |
| 123 | \dataline{SOCK_RDM} |
| 124 | \dataline{SOCK_SEQPACKET} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 125 | These constants represent the socket types, |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 126 | used for the second argument to \function{socket()}. |
| 127 | (Only \constant{SOCK_STREAM} and |
| 128 | \constant{SOCK_DGRAM} appear to be generally useful.) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 129 | \end{datadesc} |
| 130 | |
Guido van Rossum | ed2bad8 | 1995-02-16 16:29:18 +0000 | [diff] [blame] | 131 | \begin{datadesc}{SO_*} |
| 132 | \dataline{SOMAXCONN} |
| 133 | \dataline{MSG_*} |
| 134 | \dataline{SOL_*} |
| 135 | \dataline{IPPROTO_*} |
| 136 | \dataline{IPPORT_*} |
| 137 | \dataline{INADDR_*} |
| 138 | \dataline{IP_*} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 139 | \dataline{IPV6_*} |
| 140 | \dataline{EAI_*} |
| 141 | \dataline{AI_*} |
| 142 | \dataline{NI_*} |
Fred Drake | 39960f6 | 2001-12-22 19:07:58 +0000 | [diff] [blame] | 143 | \dataline{TCP_*} |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 144 | Many constants of these forms, documented in the \UNIX{} documentation on |
Guido van Rossum | ed2bad8 | 1995-02-16 16:29:18 +0000 | [diff] [blame] | 145 | sockets and/or the IP protocol, are also defined in the socket module. |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 146 | They are generally used in arguments to the \method{setsockopt()} and |
| 147 | \method{getsockopt()} methods of socket objects. In most cases, only |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 148 | those symbols that are defined in the \UNIX{} header files are defined; |
Guido van Rossum | ed2bad8 | 1995-02-16 16:29:18 +0000 | [diff] [blame] | 149 | for a few symbols, default values are provided. |
| 150 | \end{datadesc} |
| 151 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 152 | \begin{funcdesc}{getaddrinfo}{host, port\optional{, family, socktype, proto, flags}} |
| 153 | |
| 154 | Resolves the \var{host}/\var{port} argument, into a sequence of |
| 155 | 5-tuples that contain all the necessary argument for the sockets |
| 156 | manipulation. \var{host} is a domain name, a string representation of |
| 157 | IPv4/v6 address or \code{None}. |
| 158 | \var{port} is a string service name (like \code{``http''}), a numeric |
| 159 | port number or \code{None}. |
| 160 | |
| 161 | The rest of the arguments are optional and must be numeric if |
| 162 | specified. For \var{host} and \var{port}, by passing either an empty |
| 163 | string or \code{None}, you can pass \code{NULL} to the C API. The |
| 164 | \function{getaddrinfo()} function returns a list of 5-tuples with |
| 165 | the following structure: |
| 166 | |
| 167 | \code{(\var{family}, \var{socktype}, \var{proto}, \var{canonname}, \var{sockaddr})}. |
| 168 | |
| 169 | \var{family}, \var{socktype}, \var{proto} are all integer and are meant to |
| 170 | be passed to the \function{socket()} function. |
| 171 | \var{canonname} is a string representing the canonical name of the \var{host}. |
| 172 | It can be a numeric IPv4/v6 address when \code{AI_CANONNAME} is specified |
| 173 | for a numeric \var{host}. |
| 174 | \var{sockaddr} is a tuple describing a socket address, as described above. |
| 175 | See \code{Lib/httplib.py} and other library files |
| 176 | for a typical usage of the function. |
| 177 | \versionadded{2.2} |
| 178 | \end{funcdesc} |
| 179 | |
Fred Drake | 5772c86 | 2000-08-16 14:21:42 +0000 | [diff] [blame] | 180 | \begin{funcdesc}{getfqdn}{\optional{name}} |
| 181 | Return a fully qualified domain name for \var{name}. |
| 182 | If \var{name} is omitted or empty, it is interpreted as the local |
| 183 | host. To find the fully qualified name, the hostname returned by |
| 184 | \function{gethostbyaddr()} is checked, then aliases for the host, if |
| 185 | available. The first name which includes a period is selected. In |
| 186 | case no fully qualified domain name is available, the hostname is |
| 187 | returned. |
Fred Drake | 8b2e8f8 | 2000-09-06 02:22:16 +0000 | [diff] [blame] | 188 | \versionadded{2.0} |
Fred Drake | 5772c86 | 2000-08-16 14:21:42 +0000 | [diff] [blame] | 189 | \end{funcdesc} |
| 190 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 191 | \begin{funcdesc}{gethostbyname}{hostname} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 192 | Translate a host name to IPv4 address format. The IPv4 address is |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 193 | returned as a string, such as \code{'100.50.200.5'}. If the host name |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 194 | is an IPv4 address itself it is returned unchanged. See |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 195 | \function{gethostbyname_ex()} for a more complete interface. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 196 | \function{gethostbyname()} does not support IPv6 name resolution, and |
| 197 | \function{getaddrinfo()} should be used instead for IPv4/v6 dual stack support. |
Guido van Rossum | cdf6af1 | 1998-08-07 18:07:36 +0000 | [diff] [blame] | 198 | \end{funcdesc} |
| 199 | |
| 200 | \begin{funcdesc}{gethostbyname_ex}{hostname} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 201 | Translate a host name to IPv4 address format, extended interface. |
Guido van Rossum | cdf6af1 | 1998-08-07 18:07:36 +0000 | [diff] [blame] | 202 | Return a triple \code{(hostname, aliaslist, ipaddrlist)} where |
| 203 | \code{hostname} is the primary host name responding to the given |
| 204 | \var{ip_address}, \code{aliaslist} is a (possibly empty) list of |
| 205 | alternative host names for the same address, and \code{ipaddrlist} is |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 206 | a list of IPv4 addresses for the same interface on the same |
Guido van Rossum | cdf6af1 | 1998-08-07 18:07:36 +0000 | [diff] [blame] | 207 | host (often but not always a single address). |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 208 | \function{gethostbyname_ex()} does not support IPv6 name resolution, and |
| 209 | \function{getaddrinfo()} should be used instead for IPv4/v6 dual stack support. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 210 | \end{funcdesc} |
| 211 | |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 212 | \begin{funcdesc}{gethostname}{} |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 213 | Return a string containing the hostname of the machine where |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 214 | the Python interpreter is currently executing. |
| 215 | If you want to know the current machine's IP address, you may want to use |
| 216 | \code{gethostbyname(gethostname())}. |
| 217 | This operation assumes that there is a valid address-to-host mapping for |
| 218 | the host, and the assumption does not always hold. |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 219 | Note: \function{gethostname()} doesn't always return the fully qualified |
| 220 | domain name; use \code{gethostbyaddr(gethostname())} |
Guido van Rossum | fe27a50 | 1997-01-11 17:04:56 +0000 | [diff] [blame] | 221 | (see below). |
Guido van Rossum | 31cce97 | 1995-01-04 19:17:34 +0000 | [diff] [blame] | 222 | \end{funcdesc} |
| 223 | |
| 224 | \begin{funcdesc}{gethostbyaddr}{ip_address} |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 225 | Return a triple \code{(\var{hostname}, \var{aliaslist}, |
| 226 | \var{ipaddrlist})} where \var{hostname} is the primary host name |
| 227 | responding to the given \var{ip_address}, \var{aliaslist} is a |
| 228 | (possibly empty) list of alternative host names for the same address, |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 229 | and \var{ipaddrlist} is a list of IPv4/v6 addresses for the same interface |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 230 | on the same host (most likely containing only a single address). |
Fred Drake | 5772c86 | 2000-08-16 14:21:42 +0000 | [diff] [blame] | 231 | To find the fully qualified domain name, use the function |
| 232 | \function{getfqdn()}. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 233 | \function{gethostbyaddr} supports both IPv4 and IPv6. |
| 234 | \end{funcdesc} |
| 235 | |
| 236 | \begin{funcdesc}{getnameinfo}{sockaddr, flags} |
| 237 | Translate a socket address \var{sockaddr} into a 2-tuple |
| 238 | \code{(\var{host}, \var{port})}. |
| 239 | Depending on the settings of \var{flags}, the result can contain a |
| 240 | fully-qualified domain name or numeric address representation in |
| 241 | \var{host}. Similarly, \var{port} can contain a string port name or a |
| 242 | numeric port number. |
| 243 | \versionadded{2.2} |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 244 | \end{funcdesc} |
| 245 | |
Guido van Rossum | 62ac99e | 1996-12-19 16:43:25 +0000 | [diff] [blame] | 246 | \begin{funcdesc}{getprotobyname}{protocolname} |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 247 | Translate an Internet protocol name (for example, \code{'icmp'}) to a constant |
Guido van Rossum | 62ac99e | 1996-12-19 16:43:25 +0000 | [diff] [blame] | 248 | suitable for passing as the (optional) third argument to the |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 249 | \function{socket()} function. This is usually only needed for sockets |
| 250 | opened in ``raw'' mode (\constant{SOCK_RAW}); for the normal socket |
| 251 | modes, the correct protocol is chosen automatically if the protocol is |
Guido van Rossum | 62ac99e | 1996-12-19 16:43:25 +0000 | [diff] [blame] | 252 | omitted or zero. |
| 253 | \end{funcdesc} |
| 254 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 255 | \begin{funcdesc}{getservbyname}{servicename, protocolname} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 256 | Translate an Internet service name and protocol name to a port number |
| 257 | for that service. The protocol name should be \code{'tcp'} or |
| 258 | \code{'udp'}. |
| 259 | \end{funcdesc} |
| 260 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 261 | \begin{funcdesc}{socket}{family, type\optional{, proto}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 262 | Create a new socket using the given address family, socket type and |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 263 | protocol number. The address family should be \constant{AF_INET}, \constant{AF_INET6} or |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 264 | \constant{AF_UNIX}. The socket type should be \constant{SOCK_STREAM}, |
| 265 | \constant{SOCK_DGRAM} or perhaps one of the other \samp{SOCK_} constants. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 266 | The protocol number is usually zero and may be omitted in that case. |
| 267 | \end{funcdesc} |
| 268 | |
Jeremy Hylton | cb43c08 | 2001-10-11 16:17:22 +0000 | [diff] [blame] | 269 | \begin{funcdesc}{ssl}{sock\optional{, keyfile, certfile}} |
Fred Drake | 9081bb1 | 2001-09-25 15:48:11 +0000 | [diff] [blame] | 270 | Initiate a SSL connection over the socket \var{sock}. \var{keyfile} is |
| 271 | the name of a PEM formatted file that contains your private |
| 272 | key. \var{certfile} is a PEM formatted certificate chain file. On |
| 273 | success, a new \class{SSLObject} is returned. |
| 274 | |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 275 | \warning{This does not do any certificate verification!} |
Fred Drake | 9081bb1 | 2001-09-25 15:48:11 +0000 | [diff] [blame] | 276 | \end{funcdesc} |
| 277 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 278 | \begin{funcdesc}{fromfd}{fd, family, type\optional{, proto}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 279 | Build a socket object from an existing file descriptor (an integer as |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 280 | returned by a file object's \method{fileno()} method). Address family, |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 281 | socket type and protocol number are as for the \function{socket()} function |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 282 | above. The file descriptor should refer to a socket, but this is not |
| 283 | checked --- subsequent operations on the object may fail if the file |
| 284 | descriptor is invalid. This function is rarely needed, but can be |
| 285 | used to get or set socket options on a socket passed to a program as |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 286 | standard input or output (such as a server started by the \UNIX{} inet |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 287 | daemon). |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 288 | Availability: \UNIX. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 289 | \end{funcdesc} |
| 290 | |
Guido van Rossum | bda7ca7 | 1996-12-02 17:24:10 +0000 | [diff] [blame] | 291 | \begin{funcdesc}{ntohl}{x} |
Fred Drake | c5aec05 | 1997-12-08 21:25:41 +0000 | [diff] [blame] | 292 | Convert 32-bit integers from network to host byte order. On machines |
| 293 | where the host byte order is the same as network byte order, this is a |
| 294 | no-op; otherwise, it performs a 4-byte swap operation. |
| 295 | \end{funcdesc} |
| 296 | |
| 297 | \begin{funcdesc}{ntohs}{x} |
| 298 | Convert 16-bit integers from network to host byte order. On machines |
| 299 | where the host byte order is the same as network byte order, this is a |
| 300 | no-op; otherwise, it performs a 2-byte swap operation. |
| 301 | \end{funcdesc} |
| 302 | |
| 303 | \begin{funcdesc}{htonl}{x} |
| 304 | Convert 32-bit integers from host to network byte order. On machines |
| 305 | where the host byte order is the same as network byte order, this is a |
| 306 | no-op; otherwise, it performs a 4-byte swap operation. |
| 307 | \end{funcdesc} |
| 308 | |
| 309 | \begin{funcdesc}{htons}{x} |
| 310 | Convert 16-bit integers from host to network byte order. On machines |
| 311 | where the host byte order is the same as network byte order, this is a |
| 312 | no-op; otherwise, it performs a 2-byte swap operation. |
Guido van Rossum | bda7ca7 | 1996-12-02 17:24:10 +0000 | [diff] [blame] | 313 | \end{funcdesc} |
| 314 | |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 315 | \begin{funcdesc}{inet_aton}{ip_string} |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 316 | Convert an IPv4 address from dotted-quad string format (for example, |
| 317 | '123.45.67.89') to 32-bit packed binary format, as a string four |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 318 | characters in length. |
| 319 | |
| 320 | Useful when conversing with a program that uses the standard C library |
| 321 | and needs objects of type \ctype{struct in_addr}, which is the C type |
| 322 | for the 32-bit packed binary this function returns. |
| 323 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 324 | If the IPv4 address string passed to this function is invalid, |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 325 | \exception{socket.error} will be raised. Note that exactly what is |
| 326 | valid depends on the underlying C implementation of |
| 327 | \cfunction{inet_aton()}. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 328 | |
Fred Drake | 39960f6 | 2001-12-22 19:07:58 +0000 | [diff] [blame] | 329 | \function{inet_aton()} does not support IPv6, and |
| 330 | \function{getnameinfo()} should be used instead for IPv4/v6 dual stack |
| 331 | support. |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 332 | \end{funcdesc} |
| 333 | |
| 334 | \begin{funcdesc}{inet_ntoa}{packed_ip} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 335 | Convert a 32-bit packed IPv4 address (a string four characters in |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 336 | length) to its standard dotted-quad string representation |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 337 | (for example, '123.45.67.89'). |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 338 | |
| 339 | Useful when conversing with a program that uses the standard C library |
| 340 | and needs objects of type \ctype{struct in_addr}, which is the C type |
| 341 | for the 32-bit packed binary this function takes as an argument. |
| 342 | |
| 343 | If the string passed to this function is not exactly 4 bytes in |
| 344 | length, \exception{socket.error} will be raised. |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 345 | |
Fred Drake | 39960f6 | 2001-12-22 19:07:58 +0000 | [diff] [blame] | 346 | \function{inet_ntoa()} does not support IPv6, and |
| 347 | \function{getnameinfo()} should be used instead for IPv4/v6 dual stack |
| 348 | support. |
Fred Drake | e6fb1c4 | 1999-09-16 15:50:00 +0000 | [diff] [blame] | 349 | \end{funcdesc} |
| 350 | |
Fred Drake | 5451d67 | 1997-10-13 21:31:02 +0000 | [diff] [blame] | 351 | \begin{datadesc}{SocketType} |
Guido van Rossum | 2335c5e | 1997-05-21 14:41:42 +0000 | [diff] [blame] | 352 | This is a Python type object that represents the socket object type. |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 353 | It is the same as \code{type(socket(...))}. |
Guido van Rossum | 2335c5e | 1997-05-21 14:41:42 +0000 | [diff] [blame] | 354 | \end{datadesc} |
| 355 | |
Fred Drake | aa7524c | 2000-07-06 18:37:08 +0000 | [diff] [blame] | 356 | |
| 357 | \begin{seealso} |
| 358 | \seemodule{SocketServer}{Classes that simplify writing network servers.} |
| 359 | \end{seealso} |
| 360 | |
| 361 | |
Fred Drake | a94f676 | 1999-08-05 13:41:04 +0000 | [diff] [blame] | 362 | \subsection{Socket Objects \label{socket-objects}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 363 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 364 | Socket objects have the following methods. Except for |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 365 | \method{makefile()} these correspond to \UNIX{} system calls |
| 366 | applicable to sockets. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 367 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 368 | \begin{methoddesc}[socket]{accept}{} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 369 | Accept a connection. |
| 370 | The socket must be bound to an address and listening for connections. |
| 371 | The return value is a pair \code{(\var{conn}, \var{address})} |
| 372 | where \var{conn} is a \emph{new} socket object usable to send and |
| 373 | receive data on the connection, and \var{address} is the address bound |
| 374 | to the socket on the other end of the connection. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 375 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 376 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 377 | \begin{methoddesc}[socket]{bind}{address} |
Guido van Rossum | a84ec51 | 1994-06-23 12:13:52 +0000 | [diff] [blame] | 378 | Bind the socket to \var{address}. The socket must not already be bound. |
Fred Drake | 7d68690 | 2000-04-04 17:48:30 +0000 | [diff] [blame] | 379 | (The format of \var{address} depends on the address family --- see |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 380 | above.) \note{This method has historically accepted a pair |
Fred Drake | 7d68690 | 2000-04-04 17:48:30 +0000 | [diff] [blame] | 381 | of parameters for \constant{AF_INET} addresses instead of only a |
Eric S. Raymond | 8321026 | 2001-01-10 19:34:52 +0000 | [diff] [blame] | 382 | tuple. This was never intentional and is no longer be available in |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 383 | Python 2.0.} |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 384 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 385 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 386 | \begin{methoddesc}[socket]{close}{} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 387 | Close the socket. All future operations on the socket object will fail. |
| 388 | The remote end will receive no more data (after queued data is flushed). |
| 389 | Sockets are automatically closed when they are garbage-collected. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 390 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 391 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 392 | \begin{methoddesc}[socket]{connect}{address} |
Guido van Rossum | a84ec51 | 1994-06-23 12:13:52 +0000 | [diff] [blame] | 393 | Connect to a remote socket at \var{address}. |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 394 | (The format of \var{address} depends on the address family --- see |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 395 | above.) \note{This method has historically accepted a pair |
Fred Drake | 7d68690 | 2000-04-04 17:48:30 +0000 | [diff] [blame] | 396 | of parameters for \constant{AF_INET} addresses instead of only a |
Eric S. Raymond | 8321026 | 2001-01-10 19:34:52 +0000 | [diff] [blame] | 397 | tuple. This was never intentional and is no longer available in |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 398 | Python 2.0 and later.} |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 399 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 400 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 401 | \begin{methoddesc}[socket]{connect_ex}{address} |
Guido van Rossum | eefcba6 | 1997-12-09 19:47:24 +0000 | [diff] [blame] | 402 | Like \code{connect(\var{address})}, but return an error indicator |
Fred Drake | b0bc7f2 | 1999-05-06 22:03:50 +0000 | [diff] [blame] | 403 | instead of raising an exception for errors returned by the C-level |
| 404 | \cfunction{connect()} call (other problems, such as ``host not found,'' |
| 405 | can still raise exceptions). The error indicator is \code{0} if the |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 406 | operation succeeded, otherwise the value of the \cdata{errno} |
Fred Drake | 87fa3aa | 2001-12-21 17:45:03 +0000 | [diff] [blame] | 407 | variable. This is useful to support, for example, asynchronous connects. |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 408 | \note{This method has historically accepted a pair of |
Fred Drake | 7d68690 | 2000-04-04 17:48:30 +0000 | [diff] [blame] | 409 | parameters for \constant{AF_INET} addresses instead of only a tuple. |
Eric S. Raymond | 8321026 | 2001-01-10 19:34:52 +0000 | [diff] [blame] | 410 | This was never intentional and is no longer be available in Python |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 411 | 2.0 and later.} |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 412 | \end{methoddesc} |
Guido van Rossum | f7790c6 | 1997-11-18 15:29:20 +0000 | [diff] [blame] | 413 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 414 | \begin{methoddesc}[socket]{fileno}{} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 415 | Return the socket's file descriptor (a small integer). This is useful |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 416 | with \function{select.select()}. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 417 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 418 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 419 | \begin{methoddesc}[socket]{getpeername}{} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 420 | Return the remote address to which the socket is connected. This is |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 421 | useful to find out the port number of a remote IPv4/v6 socket, for instance. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 422 | (The format of the address returned depends on the address family --- |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 423 | see above.) On some systems this function is not supported. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 424 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 425 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 426 | \begin{methoddesc}[socket]{getsockname}{} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 427 | Return the socket's own address. This is useful to find out the port |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 428 | number of an IPv4/v6 socket, for instance. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 429 | (The format of the address returned depends on the address family --- |
Guido van Rossum | a84ec51 | 1994-06-23 12:13:52 +0000 | [diff] [blame] | 430 | see above.) |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 431 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 432 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 433 | \begin{methoddesc}[socket]{getsockopt}{level, optname\optional{, buflen}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 434 | Return the value of the given socket option (see the \UNIX{} man page |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 435 | \manpage{getsockopt}{2}). The needed symbolic constants |
| 436 | (\constant{SO_*} etc.) are defined in this module. If \var{buflen} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 437 | is absent, an integer option is assumed and its integer value |
Guido van Rossum | 8df3637 | 1995-02-27 17:52:15 +0000 | [diff] [blame] | 438 | is returned by the function. If \var{buflen} is present, it specifies |
| 439 | the maximum length of the buffer used to receive the option in, and |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 440 | this buffer is returned as a string. It is up to the caller to decode |
Guido van Rossum | 8df3637 | 1995-02-27 17:52:15 +0000 | [diff] [blame] | 441 | the contents of the buffer (see the optional built-in module |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 442 | \refmodule{struct} for a way to decode C structures encoded as strings). |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 443 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 444 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 445 | \begin{methoddesc}[socket]{listen}{backlog} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 446 | Listen for connections made to the socket. The \var{backlog} argument |
| 447 | specifies the maximum number of queued connections and should be at |
| 448 | least 1; the maximum value is system-dependent (usually 5). |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 449 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 450 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 451 | \begin{methoddesc}[socket]{makefile}{\optional{mode\optional{, bufsize}}} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 452 | Return a \dfn{file object} associated with the socket. (File objects |
Fred Drake | a94f676 | 1999-08-05 13:41:04 +0000 | [diff] [blame] | 453 | are described in \ref{bltin-file-objects}, ``File Objects.'') |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 454 | The file object references a \cfunction{dup()}ped version of the |
| 455 | socket file descriptor, so the file object and socket object may be |
Fred Drake | a94f676 | 1999-08-05 13:41:04 +0000 | [diff] [blame] | 456 | closed or garbage-collected independently. |
| 457 | \index{I/O control!buffering}The optional \var{mode} |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 458 | and \var{bufsize} arguments are interpreted the same way as by the |
Fred Drake | aad8bb5 | 2001-10-19 17:22:29 +0000 | [diff] [blame] | 459 | built-in \function{file()} function; see ``Built-in Functions'' |
| 460 | (section \ref{built-in-funcs}) for more information. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 461 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 462 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 463 | \begin{methoddesc}[socket]{recv}{bufsize\optional{, flags}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 464 | Receive data from the socket. The return value is a string representing |
| 465 | the data received. The maximum amount of data to be received |
| 466 | at once is specified by \var{bufsize}. See the \UNIX{} manual page |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 467 | \manpage{recv}{2} for the meaning of the optional argument |
| 468 | \var{flags}; it defaults to zero. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 469 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 470 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 471 | \begin{methoddesc}[socket]{recvfrom}{bufsize\optional{, flags}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 472 | Receive data from the socket. The return value is a pair |
| 473 | \code{(\var{string}, \var{address})} where \var{string} is a string |
| 474 | representing the data received and \var{address} is the address of the |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 475 | socket sending the data. The optional \var{flags} argument has the |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 476 | same meaning as for \method{recv()} above. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 477 | (The format of \var{address} depends on the address family --- see above.) |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 478 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 479 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 480 | \begin{methoddesc}[socket]{send}{string\optional{, flags}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 481 | Send data to the socket. The socket must be connected to a remote |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 482 | socket. The optional \var{flags} argument has the same meaning as for |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 483 | \method{recv()} above. Returns the number of bytes sent. |
Fred Drake | 39368c1 | 2001-12-05 05:25:59 +0000 | [diff] [blame] | 484 | Applications are responsible for checking that all data has been sent; |
| 485 | if only some of the data was transmitted, the application needs to |
| 486 | attempt delivery of the remaining data. |
| 487 | \end{methoddesc} |
| 488 | |
| 489 | \begin{methoddesc}[socket]{sendall}{string\optional{, flags}} |
| 490 | Send data to the socket. The socket must be connected to a remote |
| 491 | socket. The optional \var{flags} argument has the same meaning as for |
| 492 | \method{recv()} above. Unlike \method{send()}, this method continues |
| 493 | to send data from \var{string} until either all data has been sent or |
| 494 | an error occurs. \code{None} is returned on success. On error, an |
| 495 | exception is raised, and there is no way to determine how much data, |
| 496 | if any, was successfully sent. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 497 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 498 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 499 | \begin{methoddesc}[socket]{sendto}{string\optional{, flags}, address} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 500 | Send data to the socket. The socket should not be connected to a |
| 501 | remote socket, since the destination socket is specified by |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 502 | \var{address}. The optional \var{flags} argument has the same |
| 503 | meaning as for \method{recv()} above. Return the number of bytes sent. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 504 | (The format of \var{address} depends on the address family --- see above.) |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 505 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 506 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 507 | \begin{methoddesc}[socket]{setblocking}{flag} |
Guido van Rossum | 9195148 | 1994-09-07 14:39:14 +0000 | [diff] [blame] | 508 | Set blocking or non-blocking mode of the socket: if \var{flag} is 0, |
| 509 | the socket is set to non-blocking, else to blocking mode. Initially |
| 510 | all sockets are in blocking mode. In non-blocking mode, if a |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 511 | \method{recv()} call doesn't find any data, or if a |
| 512 | \method{send()} call can't immediately dispose of the data, a |
| 513 | \exception{error} exception is raised; in blocking mode, the calls |
| 514 | block until they can proceed. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 515 | \end{methoddesc} |
Guido van Rossum | 9195148 | 1994-09-07 14:39:14 +0000 | [diff] [blame] | 516 | |
Guido van Rossum | be946bf | 2002-06-06 21:51:01 +0000 | [diff] [blame] | 517 | \begin{methoddesc}[socket]{settimeout}{value} |
Fred Drake | 6c6d662 | 2002-06-06 21:57:48 +0000 | [diff] [blame] | 518 | Set a timeout on blocking socket operations. Value can be any numeric |
| 519 | value or \code{None}. Socket operations will raise an |
| 520 | \exception{error} exception if the timeout period \var{value} has |
| 521 | elapsed before the operation has completed. Setting a timeout of |
| 522 | \code{None} disables timeouts on socket operations. |
Neal Norwitz | bdbd84f | 2002-06-06 22:24:10 +0000 | [diff] [blame] | 523 | \versionadded{2.3} |
Guido van Rossum | be946bf | 2002-06-06 21:51:01 +0000 | [diff] [blame] | 524 | \end{methoddesc} |
| 525 | |
| 526 | \begin{methoddesc}[socket]{gettimeout}{} |
Fred Drake | 6c6d662 | 2002-06-06 21:57:48 +0000 | [diff] [blame] | 527 | Returns the timeout in floating seconds associated with socket |
| 528 | operations. A timeout of \code{None} indicates that timeouts on |
| 529 | socket operations are disabled. |
Neal Norwitz | bdbd84f | 2002-06-06 22:24:10 +0000 | [diff] [blame] | 530 | \versionadded{2.3} |
Guido van Rossum | be946bf | 2002-06-06 21:51:01 +0000 | [diff] [blame] | 531 | \end{methoddesc} |
| 532 | |
| 533 | Some notes on the interaction between socket blocking and timeouts: |
Neal Norwitz | bdbd84f | 2002-06-06 22:24:10 +0000 | [diff] [blame] | 534 | socket blocking mode takes precedence over timeouts. If a socket is |
| 535 | set to non-blocking mode, then timeouts are not used. |
Fred Drake | 6c6d662 | 2002-06-06 21:57:48 +0000 | [diff] [blame] | 536 | The timeout value associated with the socket can still be set using |
| 537 | \method{settimeout()} and its value retrieved using |
| 538 | \method{gettimeout()}, but the timeout is never enforced (an exception |
| 539 | will never be thrown). Otherwise, if the socket is in blocking mode, |
| 540 | setting the timeout will raise an exception as expected. |
Guido van Rossum | be946bf | 2002-06-06 21:51:01 +0000 | [diff] [blame] | 541 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 542 | \begin{methoddesc}[socket]{setsockopt}{level, optname, value} |
Fred Drake | 9a748aa | 2000-06-30 04:21:41 +0000 | [diff] [blame] | 543 | Set the value of the given socket option (see the \UNIX{} manual page |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 544 | \manpage{setsockopt}{2}). The needed symbolic constants are defined in |
| 545 | the \module{socket} module (\code{SO_*} etc.). The value can be an |
Guido van Rossum | 8df3637 | 1995-02-27 17:52:15 +0000 | [diff] [blame] | 546 | integer or a string representing a buffer. In the latter case it is |
| 547 | up to the caller to ensure that the string contains the proper bits |
| 548 | (see the optional built-in module |
Fred Drake | 318c0b1 | 1999-04-21 17:29:14 +0000 | [diff] [blame] | 549 | \refmodule{struct}\refbimodindex{struct} for a way to encode C |
| 550 | structures as strings). |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 551 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 552 | |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 553 | \begin{methoddesc}[socket]{shutdown}{how} |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 554 | Shut down one or both halves of the connection. If \var{how} is |
| 555 | \code{0}, further receives are disallowed. If \var{how} is \code{1}, |
| 556 | further sends are disallowed. If \var{how} is \code{2}, further sends |
| 557 | and receives are disallowed. |
Fred Drake | 3f1c472 | 1998-04-03 07:04:45 +0000 | [diff] [blame] | 558 | \end{methoddesc} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 559 | |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 560 | Note that there are no methods \method{read()} or \method{write()}; |
| 561 | use \method{recv()} and \method{send()} without \var{flags} argument |
| 562 | instead. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 563 | |
Fred Drake | aa7524c | 2000-07-06 18:37:08 +0000 | [diff] [blame] | 564 | |
Fred Drake | 9081bb1 | 2001-09-25 15:48:11 +0000 | [diff] [blame] | 565 | \subsection{SSL Objects \label{ssl-objects}} |
| 566 | |
| 567 | SSL objects have the following methods. |
| 568 | |
| 569 | \begin{methoddesc}{write}{s} |
| 570 | Writes the string \var{s} to the on the object's SSL connection. |
| 571 | The return value is the number of bytes written. |
| 572 | \end{methoddesc} |
| 573 | |
| 574 | \begin{methoddesc}{read}{\optional{n}} |
| 575 | If \var{n} is provided, read \var{n} bytes from the SSL connection, otherwise |
| 576 | read until EOF. The return value is a string of the bytes read. |
| 577 | \end{methoddesc} |
| 578 | |
Fred Drake | aa7524c | 2000-07-06 18:37:08 +0000 | [diff] [blame] | 579 | \subsection{Example \label{socket-example}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 580 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 581 | Here are four minimal example programs using the TCP/IP protocol:\ a |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 582 | server that echoes all data that it receives back (servicing only one |
| 583 | client), and a client using it. Note that a server must perform the |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 584 | sequence \function{socket()}, \method{bind()}, \method{listen()}, |
| 585 | \method{accept()} (possibly repeating the \method{accept()} to service |
| 586 | more than one client), while a client only needs the sequence |
| 587 | \function{socket()}, \method{connect()}. Also note that the server |
| 588 | does not \method{send()}/\method{recv()} on the |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 589 | socket it is listening on but on the new socket returned by |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 590 | \method{accept()}. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 591 | |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 592 | The first two examples support IPv4 only. |
| 593 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 594 | \begin{verbatim} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 595 | # Echo server program |
Fred Drake | ef52f60 | 2000-10-10 20:36:29 +0000 | [diff] [blame] | 596 | import socket |
| 597 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 598 | HOST = '' # Symbolic name meaning the local host |
Fred Drake | ef52f60 | 2000-10-10 20:36:29 +0000 | [diff] [blame] | 599 | PORT = 50007 # Arbitrary non-privileged port |
| 600 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
Fred Drake | 3d69c0e | 2000-05-03 19:40:32 +0000 | [diff] [blame] | 601 | s.bind((HOST, PORT)) |
Guido van Rossum | 5da5755 | 1994-03-02 10:52:16 +0000 | [diff] [blame] | 602 | s.listen(1) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 603 | conn, addr = s.accept() |
| 604 | print 'Connected by', addr |
| 605 | while 1: |
| 606 | data = conn.recv(1024) |
| 607 | if not data: break |
| 608 | conn.send(data) |
| 609 | conn.close() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 610 | \end{verbatim} |
Fred Drake | d883ca1 | 1998-03-10 05:20:33 +0000 | [diff] [blame] | 611 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 612 | \begin{verbatim} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 613 | # Echo client program |
Fred Drake | ef52f60 | 2000-10-10 20:36:29 +0000 | [diff] [blame] | 614 | import socket |
| 615 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 616 | HOST = 'daring.cwi.nl' # The remote host |
| 617 | PORT = 50007 # The same port as used by the server |
Fred Drake | ef52f60 | 2000-10-10 20:36:29 +0000 | [diff] [blame] | 618 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
Fred Drake | 3d69c0e | 2000-05-03 19:40:32 +0000 | [diff] [blame] | 619 | s.connect((HOST, PORT)) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 620 | s.send('Hello, world') |
| 621 | data = s.recv(1024) |
| 622 | s.close() |
| 623 | print 'Received', `data` |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 624 | \end{verbatim} |
Martin v. Löwis | c9908c4 | 2001-08-04 22:22:45 +0000 | [diff] [blame] | 625 | |
| 626 | The next two examples are identical to the above two, but support both |
| 627 | IPv4 and IPv6. |
| 628 | The server side will listen to the first address family available |
| 629 | (it should listen to both instead). |
| 630 | On most of IPv6-ready systems, IPv6 will take precedence |
| 631 | and the server may not accept IPv4 traffic. |
| 632 | The client side will try to connect to the all addresses returned as a result |
| 633 | of the name resolution, and sends traffic to the first one connected |
| 634 | successfully. |
| 635 | |
| 636 | \begin{verbatim} |
| 637 | # Echo server program |
| 638 | import socket |
| 639 | import sys |
| 640 | |
| 641 | HOST = '' # Symbolic name meaning the local host |
| 642 | PORT = 50007 # Arbitrary non-privileged port |
| 643 | s = None |
| 644 | for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, socket.SOCK_STREAM, 0, socket.AI_PASSIVE): |
| 645 | af, socktype, proto, canonname, sa = res |
| 646 | try: |
| 647 | s = socket.socket(af, socktype, proto) |
| 648 | except socket.error, msg: |
| 649 | s = None |
| 650 | continue |
| 651 | try: |
| 652 | s.bind(sa) |
| 653 | s.listen(1) |
| 654 | except socket.error, msg: |
| 655 | s.close() |
| 656 | s = None |
| 657 | continue |
| 658 | break |
| 659 | if s is None: |
| 660 | print 'could not open socket' |
| 661 | sys.exit(1) |
| 662 | conn, addr = s.accept() |
| 663 | print 'Connected by', addr |
| 664 | while 1: |
| 665 | data = conn.recv(1024) |
| 666 | if not data: break |
| 667 | conn.send(data) |
| 668 | conn.close() |
| 669 | \end{verbatim} |
| 670 | |
| 671 | \begin{verbatim} |
| 672 | # Echo client program |
| 673 | import socket |
| 674 | import sys |
| 675 | |
| 676 | HOST = 'daring.cwi.nl' # The remote host |
| 677 | PORT = 50007 # The same port as used by the server |
| 678 | s = None |
| 679 | for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, socket.SOCK_STREAM): |
| 680 | af, socktype, proto, canonname, sa = res |
| 681 | try: |
| 682 | s = socket.socket(af, socktype, proto) |
| 683 | except socket.error, msg: |
| 684 | s = None |
| 685 | continue |
| 686 | try: |
| 687 | s.connect(sa) |
| 688 | except socket.error, msg: |
| 689 | s.close() |
| 690 | s = None |
| 691 | continue |
| 692 | break |
| 693 | if s is None: |
| 694 | print 'could not open socket' |
| 695 | sys.exit(1) |
| 696 | s.send('Hello, world') |
| 697 | data = s.recv(1024) |
| 698 | s.close() |
| 699 | print 'Received', `data` |
| 700 | \end{verbatim} |