Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 1 | \section{Built-in Module \sectcode{socket}} |
| 2 | |
| 3 | \bimodindex{socket} |
| 4 | This module provides access to the BSD {\em socket} interface. |
| 5 | It is available on \UNIX{} systems that support this interface. |
| 6 | |
| 7 | For an introduction to socket programming (in C), see the following |
| 8 | papers: \emph{An Introductory 4.3BSD Interprocess Communication |
| 9 | Tutorial}, by Stuart Sechrest and \emph{An Advanced 4.3BSD Interprocess |
| 10 | Communication Tutorial}, by Samuel J. Leffler et al, both in the |
| 11 | \UNIX{} Programmer's Manual, Supplementary Documents 1 (sections PS1:7 |
| 12 | and PS1:8). The \UNIX{} manual pages for the various socket-related |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 13 | system calls are also a valuable source of information on the details of |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 14 | socket semantics. |
| 15 | |
| 16 | The Python interface is a straightforward transliteration of the |
| 17 | \UNIX{} system call and library interface for sockets to Python's |
| 18 | object-oriented style: the \code{socket()} function returns a |
| 19 | \dfn{socket object} whose methods implement the various socket system |
| 20 | calls. Parameter types are somewhat higer-level than in the C |
| 21 | interface: as with \code{read()} and \code{write()} operations on Python |
| 22 | files, buffer allocation on receive operations is automatic, and |
| 23 | buffer length is implicit on send operations. |
| 24 | |
| 25 | Socket addresses are represented as a single string for the |
| 26 | \code{AF_UNIX} address family and as a pair |
| 27 | \code{(\var{host}, \var{port})} for the \code{AF_INET} address family, |
| 28 | where \var{host} is a string representing |
| 29 | either a hostname in Internet domain notation like |
| 30 | \code{'daring.cwi.nl'} or an IP address like \code{'100.50.200.5'}, |
| 31 | and \var{port} is an integral port number. Other address families are |
| 32 | currently not supported. The address format required by a particular |
| 33 | socket object is automatically selected based on the address family |
| 34 | specified when the socket object was created. |
| 35 | |
| 36 | All errors raise exceptions. The normal exceptions for invalid |
| 37 | argument types and out-of-memory conditions can be raised; errors |
| 38 | related to socket or address semantics raise the error \code{socket.error}. |
| 39 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 40 | Non-blocking mode is supported through the \code{setblocking()} |
| 41 | method. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 42 | |
| 43 | The module \code{socket} exports the following constants and functions: |
| 44 | |
| 45 | \renewcommand{\indexsubitem}{(in module socket)} |
| 46 | \begin{excdesc}{error} |
| 47 | This exception is raised for socket- or address-related errors. |
| 48 | The accompanying value is either a string telling what went wrong or a |
| 49 | pair \code{(\var{errno}, \var{string})} |
| 50 | representing an error returned by a system |
| 51 | call, similar to the value accompanying \code{posix.error}. |
| 52 | \end{excdesc} |
| 53 | |
| 54 | \begin{datadesc}{AF_UNIX} |
| 55 | \dataline{AF_INET} |
| 56 | These constants represent the address (and protocol) families, |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 57 | used for the first argument to \code{socket()}. If the \code{AF_UNIX} |
| 58 | constant is not defined then this protocol is unsupported. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 59 | \end{datadesc} |
| 60 | |
| 61 | \begin{datadesc}{SOCK_STREAM} |
| 62 | \dataline{SOCK_DGRAM} |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 63 | \dataline{SOCK_RAW} |
| 64 | \dataline{SOCK_RDM} |
| 65 | \dataline{SOCK_SEQPACKET} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 66 | These constants represent the socket types, |
| 67 | used for the second argument to \code{socket()}. |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 68 | (Only \code{SOCK_STREAM} and |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 69 | \code{SOCK_DGRAM} appear to be generally useful.) |
| 70 | \end{datadesc} |
| 71 | |
Guido van Rossum | ed2bad8 | 1995-02-16 16:29:18 +0000 | [diff] [blame] | 72 | \begin{datadesc}{SO_*} |
| 73 | \dataline{SOMAXCONN} |
| 74 | \dataline{MSG_*} |
| 75 | \dataline{SOL_*} |
| 76 | \dataline{IPPROTO_*} |
| 77 | \dataline{IPPORT_*} |
| 78 | \dataline{INADDR_*} |
| 79 | \dataline{IP_*} |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 80 | Many constants of these forms, documented in the \UNIX{} documentation on |
Guido van Rossum | ed2bad8 | 1995-02-16 16:29:18 +0000 | [diff] [blame] | 81 | sockets and/or the IP protocol, are also defined in the socket module. |
| 82 | They are generally used in arguments to the \code{setsockopt} and |
| 83 | \code{getsockopt} methods of socket objects. In most cases, only |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 84 | 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] | 85 | for a few symbols, default values are provided. |
| 86 | \end{datadesc} |
| 87 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 88 | \begin{funcdesc}{gethostbyname}{hostname} |
| 89 | Translate a host name to IP address format. The IP address is |
| 90 | returned as a string, e.g., \code{'100.50.200.5'}. If the host name |
| 91 | is an IP address itself it is returned unchanged. |
| 92 | \end{funcdesc} |
| 93 | |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 94 | \begin{funcdesc}{gethostname}{} |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 95 | Return a string containing the hostname of the machine where |
| 96 | the Python interpreter is currently executing. If you want to know the |
| 97 | current machine's IP address, use |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 98 | \code{socket.gethostbyname(socket.gethostname())}. |
Guido van Rossum | 31cce97 | 1995-01-04 19:17:34 +0000 | [diff] [blame] | 99 | \end{funcdesc} |
| 100 | |
| 101 | \begin{funcdesc}{gethostbyaddr}{ip_address} |
| 102 | Return a triple \code{(hostname, aliaslist, ipaddrlist)} where |
| 103 | \code{hostname} is the primary host name responding to the given |
| 104 | \var{ip_address}, \code{aliaslist} is a (possibly empty) list of |
| 105 | alternative host names for the same address, and \code{ipaddrlist} is |
| 106 | a list of IP addresses for the same interface on the same |
| 107 | host (most likely containing only a single address). |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 108 | \end{funcdesc} |
| 109 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 110 | \begin{funcdesc}{getservbyname}{servicename\, protocolname} |
| 111 | Translate an Internet service name and protocol name to a port number |
| 112 | for that service. The protocol name should be \code{'tcp'} or |
| 113 | \code{'udp'}. |
| 114 | \end{funcdesc} |
| 115 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 116 | \begin{funcdesc}{socket}{family\, type\optional{\, proto}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 117 | Create a new socket using the given address family, socket type and |
| 118 | protocol number. The address family should be \code{AF_INET} or |
| 119 | \code{AF_UNIX}. The socket type should be \code{SOCK_STREAM}, |
| 120 | \code{SOCK_DGRAM} or perhaps one of the other \samp{SOCK_} constants. |
| 121 | The protocol number is usually zero and may be omitted in that case. |
| 122 | \end{funcdesc} |
| 123 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 124 | \begin{funcdesc}{fromfd}{fd\, family\, type\optional{\, proto}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 125 | Build a socket object from an existing file descriptor (an integer as |
| 126 | returned by a file object's \code{fileno} method). Address family, |
| 127 | socket type and protocol number are as for the \code{socket} function |
| 128 | above. The file descriptor should refer to a socket, but this is not |
| 129 | checked --- subsequent operations on the object may fail if the file |
| 130 | descriptor is invalid. This function is rarely needed, but can be |
| 131 | used to get or set socket options on a socket passed to a program as |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 132 | standard input or output (e.g.\ a server started by the \UNIX{} inet |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 133 | daemon). |
| 134 | \end{funcdesc} |
| 135 | |
Guido van Rossum | bda7ca7 | 1996-12-02 17:24:10 +0000 | [diff] [blame] | 136 | \begin{funcdesc}{ntohl}{x} |
| 137 | \funcline{ntohs}{x} |
| 138 | \funcline{htonl}{x} |
| 139 | \funcline{htons}{x} |
| 140 | These functions convert 32-bit (`l' suffix) and 16-bit (`s' suffix) |
| 141 | integers between network and host byte order. On machines where the |
| 142 | host byte order is the same as the network byte order, they are no-ops |
| 143 | (assuming the values fit in the indicated size); otherwise, they |
| 144 | perform 2-byte or 4-byte swap operations. |
| 145 | \end{funcdesc} |
| 146 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 147 | \subsection{Socket Objects} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 148 | |
| 149 | \noindent |
| 150 | Socket objects have the following methods. Except for |
| 151 | \code{makefile()} these correspond to \UNIX{} system calls applicable to |
| 152 | sockets. |
| 153 | |
| 154 | \renewcommand{\indexsubitem}{(socket method)} |
| 155 | \begin{funcdesc}{accept}{} |
| 156 | Accept a connection. |
| 157 | The socket must be bound to an address and listening for connections. |
| 158 | The return value is a pair \code{(\var{conn}, \var{address})} |
| 159 | where \var{conn} is a \emph{new} socket object usable to send and |
| 160 | receive data on the connection, and \var{address} is the address bound |
| 161 | to the socket on the other end of the connection. |
| 162 | \end{funcdesc} |
| 163 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 164 | \begin{funcdesc}{bind}{address} |
Guido van Rossum | a84ec51 | 1994-06-23 12:13:52 +0000 | [diff] [blame] | 165 | Bind the socket to \var{address}. The socket must not already be bound. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 166 | (The format of \var{address} depends on the address family --- see above.) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 167 | \end{funcdesc} |
| 168 | |
| 169 | \begin{funcdesc}{close}{} |
| 170 | Close the socket. All future operations on the socket object will fail. |
| 171 | The remote end will receive no more data (after queued data is flushed). |
| 172 | Sockets are automatically closed when they are garbage-collected. |
| 173 | \end{funcdesc} |
| 174 | |
| 175 | \begin{funcdesc}{connect}{address} |
Guido van Rossum | a84ec51 | 1994-06-23 12:13:52 +0000 | [diff] [blame] | 176 | Connect to a remote socket at \var{address}. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 177 | (The format of \var{address} depends on the address family --- see above.) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 178 | \end{funcdesc} |
| 179 | |
| 180 | \begin{funcdesc}{fileno}{} |
| 181 | Return the socket's file descriptor (a small integer). This is useful |
| 182 | with \code{select}. |
| 183 | \end{funcdesc} |
| 184 | |
| 185 | \begin{funcdesc}{getpeername}{} |
| 186 | Return the remote address to which the socket is connected. This is |
| 187 | useful to find out the port number of a remote IP socket, for instance. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 188 | (The format of the address returned depends on the address family --- |
Guido van Rossum | 781db5d | 1994-08-05 13:37:36 +0000 | [diff] [blame] | 189 | see above.) On some systems this function is not supported. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 190 | \end{funcdesc} |
| 191 | |
| 192 | \begin{funcdesc}{getsockname}{} |
| 193 | Return the socket's own address. This is useful to find out the port |
| 194 | number of an IP socket, for instance. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 195 | (The format of the address returned depends on the address family --- |
Guido van Rossum | a84ec51 | 1994-06-23 12:13:52 +0000 | [diff] [blame] | 196 | see above.) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 197 | \end{funcdesc} |
| 198 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 199 | \begin{funcdesc}{getsockopt}{level\, optname\optional{\, buflen}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 200 | Return the value of the given socket option (see the \UNIX{} man page |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 201 | {\it getsockopt}(2)). The needed symbolic constants (\code{SO_*} etc.) |
| 202 | are defined in this module. If \var{buflen} |
| 203 | is absent, an integer option is assumed and its integer value |
Guido van Rossum | 8df3637 | 1995-02-27 17:52:15 +0000 | [diff] [blame] | 204 | is returned by the function. If \var{buflen} is present, it specifies |
| 205 | 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] | 206 | 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] | 207 | the contents of the buffer (see the optional built-in module |
| 208 | \code{struct} for a way to decode C structures encoded as strings). |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 209 | \end{funcdesc} |
| 210 | |
| 211 | \begin{funcdesc}{listen}{backlog} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 212 | Listen for connections made to the socket. The \var{backlog} argument |
| 213 | specifies the maximum number of queued connections and should be at |
| 214 | least 1; the maximum value is system-dependent (usually 5). |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 215 | \end{funcdesc} |
| 216 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 217 | \begin{funcdesc}{makefile}{\optional{mode\optional{\, bufsize}}} |
| 218 | Return a \dfn{file object} associated with the socket. (File objects |
| 219 | were described earlier under Built-in Types.) The file object |
| 220 | references a \code{dup()}ped version of the socket file descriptor, so |
| 221 | the file object and socket object may be closed or garbage-collected |
| 222 | independently. The optional \var{mode} and \var{bufsize} arguments |
| 223 | are interpreted the same way as by the built-in |
| 224 | \code{open()} function. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 225 | \end{funcdesc} |
| 226 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 227 | \begin{funcdesc}{recv}{bufsize\optional{\, flags}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 228 | Receive data from the socket. The return value is a string representing |
| 229 | the data received. The maximum amount of data to be received |
| 230 | at once is specified by \var{bufsize}. See the \UNIX{} manual page |
| 231 | for the meaning of the optional argument \var{flags}; it defaults to |
| 232 | zero. |
| 233 | \end{funcdesc} |
| 234 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 235 | \begin{funcdesc}{recvfrom}{bufsize\optional{\, flags}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 236 | Receive data from the socket. The return value is a pair |
| 237 | \code{(\var{string}, \var{address})} where \var{string} is a string |
| 238 | 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] | 239 | socket sending the data. The optional \var{flags} argument has the |
| 240 | same meaning as for \code{recv()} above. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 241 | (The format of \var{address} depends on the address family --- see above.) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 242 | \end{funcdesc} |
| 243 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 244 | \begin{funcdesc}{send}{string\optional{\, flags}} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 245 | 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] | 246 | socket. The optional \var{flags} argument has the same meaning as for |
| 247 | \code{recv()} above. Return the number of bytes sent. |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 248 | \end{funcdesc} |
| 249 | |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 250 | \begin{funcdesc}{sendto}{string\optional{\, flags}\, address} |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 251 | Send data to the socket. The socket should not be connected to a |
| 252 | remote socket, since the destination socket is specified by |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 253 | \code{address}. The optional \var{flags} argument has the same |
| 254 | meaning as for \code{recv()} above. Return the number of bytes sent. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 255 | (The format of \var{address} depends on the address family --- see above.) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 256 | \end{funcdesc} |
| 257 | |
Guido van Rossum | 9195148 | 1994-09-07 14:39:14 +0000 | [diff] [blame] | 258 | \begin{funcdesc}{setblocking}{flag} |
| 259 | Set blocking or non-blocking mode of the socket: if \var{flag} is 0, |
| 260 | the socket is set to non-blocking, else to blocking mode. Initially |
| 261 | all sockets are in blocking mode. In non-blocking mode, if a |
| 262 | \code{recv} call doesn't find any data, or if a \code{send} call can't |
| 263 | immediately dispose of the data, a \code{socket.error} exception is |
| 264 | raised; in blocking mode, the calls block until they can proceed. |
| 265 | \end{funcdesc} |
| 266 | |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 267 | \begin{funcdesc}{setsockopt}{level\, optname\, value} |
| 268 | Set the value of the given socket option (see the \UNIX{} man page |
Guido van Rossum | 8df3637 | 1995-02-27 17:52:15 +0000 | [diff] [blame] | 269 | {\it setsockopt}(2)). The needed symbolic constants are defined in |
| 270 | the \code{socket} module (\code{SO_*} etc.). The value can be an |
| 271 | integer or a string representing a buffer. In the latter case it is |
| 272 | up to the caller to ensure that the string contains the proper bits |
| 273 | (see the optional built-in module |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 274 | \code{struct} for a way to encode C structures as strings). |
| 275 | \end{funcdesc} |
| 276 | |
| 277 | \begin{funcdesc}{shutdown}{how} |
| 278 | Shut down one or both halves of the connection. If \var{how} is \code{0}, |
| 279 | further receives are disallowed. If \var{how} is \code{1}, further sends are |
| 280 | disallowed. If \var{how} is \code{2}, further sends and receives are |
| 281 | disallowed. |
| 282 | \end{funcdesc} |
| 283 | |
| 284 | Note that there are no methods \code{read()} or \code{write()}; use |
| 285 | \code{recv()} and \code{send()} without \var{flags} argument instead. |
| 286 | |
| 287 | \subsection{Example} |
| 288 | \nodename{Socket Example} |
| 289 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 290 | Here are two minimal example programs using the TCP/IP protocol:\ a |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 291 | server that echoes all data that it receives back (servicing only one |
| 292 | client), and a client using it. Note that a server must perform the |
| 293 | sequence \code{socket}, \code{bind}, \code{listen}, \code{accept} |
| 294 | (possibly repeating the \code{accept} to service more than one client), |
| 295 | while a client only needs the sequence \code{socket}, \code{connect}. |
| 296 | Also note that the server does not \code{send}/\code{receive} on the |
| 297 | socket it is listening on but on the new socket returned by |
| 298 | \code{accept}. |
| 299 | |
| 300 | \bcode\begin{verbatim} |
| 301 | # Echo server program |
| 302 | from socket import * |
| 303 | HOST = '' # Symbolic name meaning the local host |
| 304 | PORT = 50007 # Arbitrary non-privileged server |
| 305 | s = socket(AF_INET, SOCK_STREAM) |
| 306 | s.bind(HOST, PORT) |
Guido van Rossum | 5da5755 | 1994-03-02 10:52:16 +0000 | [diff] [blame] | 307 | s.listen(1) |
Guido van Rossum | 5fdeeea | 1994-01-02 01:22:07 +0000 | [diff] [blame] | 308 | conn, addr = s.accept() |
| 309 | print 'Connected by', addr |
| 310 | while 1: |
| 311 | data = conn.recv(1024) |
| 312 | if not data: break |
| 313 | conn.send(data) |
| 314 | conn.close() |
| 315 | \end{verbatim}\ecode |
| 316 | |
| 317 | \bcode\begin{verbatim} |
| 318 | # Echo client program |
| 319 | from socket import * |
| 320 | HOST = 'daring.cwi.nl' # The remote host |
| 321 | PORT = 50007 # The same port as used by the server |
| 322 | s = socket(AF_INET, SOCK_STREAM) |
| 323 | s.connect(HOST, PORT) |
| 324 | s.send('Hello, world') |
| 325 | data = s.recv(1024) |
| 326 | s.close() |
| 327 | print 'Received', `data` |
| 328 | \end{verbatim}\ecode |