aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-09-30 13:01:12 +0000
committerRichard M. Stallman2003-09-30 13:01:12 +0000
commit312660e0e3392d38ebc7dcd6a25789a2aadd95ad (patch)
tree11df1c6d5b6df03b4db0cb9abe7c7932d69fd5c2
parent66fd2c72334d7db3dfa38c3c7b875ecefa6cdd0f (diff)
downloademacs-312660e0e3392d38ebc7dcd6a25789a2aadd95ad.tar.gz
emacs-312660e0e3392d38ebc7dcd6a25789a2aadd95ad.zip
(Network): Say what stopped datagram connections do.
-rw-r--r--lispref/processes.texi9
1 files changed, 5 insertions, 4 deletions
diff --git a/lispref/processes.texi b/lispref/processes.texi
index d0b77b7c018..af430458834 100644
--- a/lispref/processes.texi
+++ b/lispref/processes.texi
@@ -1507,11 +1507,12 @@ subprocess. @xref{Process Information}.
1507process, being stopped means not accepting new connections. (Up to 5 1507process, being stopped means not accepting new connections. (Up to 5
1508connection requests will be queued for when you resume the server; you 1508connection requests will be queued for when you resume the server; you
1509can increase this limit, unless it is imposed by the operating 1509can increase this limit, unless it is imposed by the operating
1510systems.) For a network connection, being stopped means not 1510systems.) For a network stream connection, being stopped means not
1511processing input (any arriving input waits until you resume the 1511processing input (any arriving input waits until you resume the
1512connection). You can use the function @code{process-command} to 1512connection). For a datagram connection, some number of packets may be
1513determine whether a network connection or server is stopped; a 1513queued but input may be lost. You can use the function
1514non-@code{nil} value means yes. 1514@code{process-command} to determine whether a network connection or
1515server is stopped; a non-@code{nil} value means yes.
1515 1516
1516@defun open-network-stream name buffer-or-name host service 1517@defun open-network-stream name buffer-or-name host service
1517This function opens a TCP connection, and returns a process object 1518This function opens a TCP connection, and returns a process object