summaryrefslogtreecommitdiff
path: root/doc/zmq_close.txt
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-10-30 18:17:53 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-10-30 18:17:53 +0200
commit085b709021c44673d9bf65a5d639e3c2e99703af (patch)
tree453dccdc55c492141cf450e0249ef410cdf85113 /doc/zmq_close.txt
parent3d8eb071a2a664d8de1e2e2fa7cb46a4f2764e5e (diff)
Documentation for zmq_close and zmq_term fixed.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'doc/zmq_close.txt')
-rw-r--r--doc/zmq_close.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/zmq_close.txt b/doc/zmq_close.txt
index e903437..1200fb7 100644
--- a/doc/zmq_close.txt
+++ b/doc/zmq_close.txt
@@ -15,12 +15,11 @@ SYNOPSIS
DESCRIPTION
-----------
The _zmq_close()_ function shall destroy the socket referenced by the 'socket'
-argument. All active connections on the socket shall be terminated and
-resources associated with the socket shall be released. Any outstanding
-messages sent with _zmq_send()_ but not yet physically sent to the network
-shall be dropped. Likewise, any outstanding messages physically received from
-the network but not yet received by the application with _zmq_recv()_ shall
-also be dropped.
+argument. Any outstanding messages physically received from the network but not
+yet received by the application with _zmq_recv()_ shall also be dropped. As for
+the messages sent with _zmq_send()_ but not yet passed to the network, 0MQ
+will try to send them in the background after _zmq_close()_ returns. Time spent
+attempting can be set using _ZMQ_LINGER_ socket option.
RETURN VALUE
@@ -39,6 +38,7 @@ SEE ALSO
--------
linkzmq:zmq_socket[3]
linkzmq:zmq_term[3]
+linkzmq:zmq_setsockopt[3]
linkzmq:zmq[7]