diff options
author | Kim F. Storm <storm@cua.dk> | 2003-10-10 21:35:51 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2003-10-10 21:35:51 +0000 |
commit | 78e54e2d68737ca1c7175e4b9c1455e77025b388 (patch) | |
tree | f2b72d4b5a379ee8f5c372298b7a75dece71f740 /lispref/processes.texi | |
parent | c989ebe9525d9c8ebecc59878901588f9276be44 (diff) | |
download | emacs-78e54e2d68737ca1c7175e4b9c1455e77025b388.tar.gz |
(Network): Introduce make-network-process.
Diffstat (limited to 'lispref/processes.texi')
-rw-r--r-- | lispref/processes.texi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lispref/processes.texi b/lispref/processes.texi index 7165c9634c2..a13dfbab3a8 100644 --- a/lispref/processes.texi +++ b/lispref/processes.texi @@ -1494,6 +1494,15 @@ made. (The network connection inherits certain information, including the process plist, from the server.) The network server then goes back to listening for more connection requests. + Network connections and servers are created by calling +@code{make-network-process} with an argument list consisting of +keyword/argument pairs, for example @code{:server t} to create a +server process, or @code{:type 'datagram} to create a datagram +connection. @xref{Low-Level Network} for details. You can also use +one of the @code{open-network-...} functions descibed below; +internally, they just call @code{make-network-process} with suitable +arguments. + You can distinguish process objects representing network connections and servers from those representing subprocesses with the @code{process-status} function. The possible status values for |