-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from pieterh/master
Preparing for release 2.2.0
- Loading branch information
Showing
32 changed files
with
106 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,8 +200,7 @@ of the 0MQ community and pointers can be found on the 0MQ website. | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. | ||
|
||
|
||
RESOURCES | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,5 +89,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,5 +48,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,5 +87,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,5 +208,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,18 +121,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Pieter Hintjens <[email protected]> | ||
|
||
|
||
RESOURCES | ||
--------- | ||
Main web site: <http://www.zeromq.org/> | ||
|
||
Report bugs to the 0MQ development mailing list: <[email protected]> | ||
|
||
|
||
COPYING | ||
------- | ||
Free use of this software is granted under the terms of the GNU Lesser General | ||
Public License (LGPL). For details see the files `COPYING` and `COPYING.LESSER` | ||
included with the 0MQ distribution. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,5 +46,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,38 @@ Default value:: 0 | |
Applicable socket types:: all | ||
|
||
|
||
ZMQ_RCVTIMEO: Maximum time before a socket operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Retrieve the timeout for recv operation on the socket. If the value is `0`, | ||
_zmq_recv(3)_ will return immediately, with a EAGAIN error if there is no | ||
message to receive. If the value is `-1`, it will block until a message is | ||
available. For all other values, it will wait for a message for that amount | ||
of time before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
ZMQ_SNDTIMEO: Maximum time before a socket operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Retrieve the timeout for send operation on the socket. If the value is `0`, | ||
_zmq_send(3)_ will return immediately, with a EAGAIN error if the message | ||
cannot be sent. If the value is `-1`, it will block until the message is sent. | ||
For all other values, it will try to send the message for that amount of time | ||
before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
ZMQ_SWAP: Retrieve disk offload size | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
The 'ZMQ_SWAP' option shall retrieve the disk offload (swap) size for the | ||
|
@@ -394,38 +426,6 @@ assert (rc == 0); | |
---- | ||
|
||
|
||
ZMQ_RCVTIMEO: Maximum time before a socket operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Retrieve the timeout for recv operation on the socket. If the value is `0`, | ||
_zmq_recv(3)_ will return immediately, with a EAGAIN error if there is no | ||
message to receive. If the value is `-1`, it will block until a message is | ||
available. For all other values, it will wait for a message for that amount | ||
of time before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
ZMQ_SNDTIMEO: Maximum time before a socket operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Retrieve the timeout for send operation on the socket. If the value is `0`, | ||
_zmq_send(3)_ will return immediately, with a EAGAIN error if the message | ||
cannot be sent. If the value is `-1`, it will block until the message is sent. | ||
For all other values, it will try to send the message for that amount of time | ||
before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
SEE ALSO | ||
-------- | ||
linkzmq:zmq_setsockopt[3] | ||
|
@@ -435,5 +435,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,5 +47,4 @@ linkzmq:zmq_term[3] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,5 +85,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,5 +76,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,5 +51,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,5 +53,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,5 +61,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,5 +79,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,5 +54,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,5 +48,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,7 +156,7 @@ linkzmq:zmq_ipc[7] | |
linkzmq:zmq_inproc[7] | ||
linkzmq:zmq[7] | ||
|
||
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,5 +128,4 @@ Your operating system documentation for the _poll()_ system call. | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,5 +117,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,5 +116,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,38 @@ Default value:: N/A | |
Applicable socket types:: ZMQ_SUB | ||
|
||
|
||
ZMQ_RCVTIMEO: Maximum time before a recv operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Sets the timeout for receive operation on the socket. If the value is `0`, | ||
_zmq_recv(3)_ will return immediately, with a EAGAIN error if there is no | ||
message to receive. If the value is `-1`, it will block until a message is | ||
available. For all other values, it will wait for a message for that amount | ||
of time before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
ZMQ_SNDTIMEO: Maximum time before a send operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Sets the timeout for send operation on the socket. If the value is `0`, | ||
_zmq_send(3)_ will return immediately, with a EAGAIN error if the message | ||
cannot be sent. If the value is `-1`, it will block until the message is sent. | ||
For all other values, it will try to send the message for that amount of time | ||
before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
ZMQ_RATE: Set multicast data rate | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
The 'ZMQ_RATE' option shall set the maximum send or receive data rate for | ||
|
@@ -369,38 +401,6 @@ assert (rc); | |
---- | ||
|
||
|
||
ZMQ_RCVTIMEO: Maximum time before a recv operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Sets the timeout for receive operation on the socket. If the value is `0`, | ||
_zmq_recv(3)_ will return immediately, with a EAGAIN error if there is no | ||
message to receive. If the value is `-1`, it will block until a message is | ||
available. For all other values, it will wait for a message for that amount | ||
of time before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
ZMQ_SNDTIMEO: Maximum time before a send operation returns with EAGAIN | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Sets the timeout for send operation on the socket. If the value is `0`, | ||
_zmq_send(3)_ will return immediately, with a EAGAIN error if the message | ||
cannot be sent. If the value is `-1`, it will block until the message is sent. | ||
For all other values, it will try to send the message for that amount of time | ||
before returning with an EAGAIN error. | ||
|
||
[horizontal] | ||
Option value type:: int | ||
Option value unit:: milliseconds | ||
Default value:: -1 (infinite) | ||
Applicable socket types:: all | ||
|
||
|
||
SEE ALSO | ||
-------- | ||
linkzmq:zmq_getsockopt[3] | ||
|
@@ -410,5 +410,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -338,5 +338,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,5 +51,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -158,5 +158,4 @@ linkzmq:zmq[7] | |
|
||
AUTHORS | ||
------- | ||
This 0MQ manual page was written by Martin Sustrik <[email protected]> and | ||
Martin Lucina <[email protected]>. | ||
This manual page was written by the 0MQ community. |
Oops, something went wrong.