diff options
Diffstat (limited to 'Doc/lib/libsocket.tex')
-rw-r--r-- | Doc/lib/libsocket.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libsocket.tex b/Doc/lib/libsocket.tex index 8599451..7596a86 100644 --- a/Doc/lib/libsocket.tex +++ b/Doc/lib/libsocket.tex @@ -193,13 +193,13 @@ socket sending the data. \begin{funcdesc}{send}{string} Send data to the socket. The socket must be connected to a remote -socket. +socket. Return the number of bytes sent. \end{funcdesc} \begin{funcdesc}{sendto}{string\, address} Send data to the socket. The socket should not be connected to a remote socket, since the destination socket is specified by -\code{address}. +\code{address}. Return the number of bytes sent. (The format of \var{address} depends on the address family -- see above.) \end{funcdesc} |