- 23 Jun, 2012 1 commit
-
-
MinRK authored
avoids warnings of the form: warning: 'struct iovec' declared inside parameter list warning: its scope is only this definition or declaration, which is probably not what you want when building downstream projects
-
- 20 Jun, 2012 1 commit
-
-
Pieter Hintjens authored
Fix missing ENETRESET for Jira #LIBZMQ-329.
-
- 19 Jun, 2012 5 commits
-
-
Steven McCoy authored
-
Ian Barber authored
Missing semi-colon makes Windows compilation fail, Missing files in WIndows solution file
-
Jos Decoster authored
-
jdc8 authored
-
Pieter Hintjens authored
Add errno fallback values for MSVC2008.
-
- 18 Jun, 2012 1 commit
-
-
Steven McCoy authored
-
- 17 Jun, 2012 1 commit
-
-
Ian Barber authored
Reworked ZMQ_FAIL_UNROUTABLE to actually work as it was intended.
-
- 16 Jun, 2012 5 commits
-
-
Kobolog authored
-
Kobolog authored
-
Kobolog authored
-
Pieter Hintjens authored
Fix open_socket to return -1 (INVALID_SOCKET on Windows) on error
-
Martin Hurton authored
-
- 15 Jun, 2012 3 commits
-
-
Pieter Hintjens authored
Connecter cleanups
-
Martin Hurton authored
Calling close () when the underlying socket is invalid triggers an assertion failure.
-
Martin Hurton authored
Make start_connecting () to have singe exit point.
-
- 14 Jun, 2012 5 commits
-
-
Martin Hurton authored
The patch is meant to make the code easier to understand. The 'wait' attribute is replaced by 'delayed_start' and 'timer_started' attributes. The former is constant and is initialized in the constructor. The latter is a flag reflecting whether a timer has been started and changes during the lifetime of the object.
-
Pieter Hintjens authored
current libzmq not compiling with android NDK
-
Javier Lopez authored
- Android crosscompiler shows a warning about two signed/unsigned checks on compilation, this patch adds casts to avoid this, so zmq3.x can compile on it.
-
Ian Barber authored
Correct typo: add missing single quote.
-
Hiten P authored
-
- 13 Jun, 2012 10 commits
-
-
Pieter Hintjens authored
Fix #LIBZMQ-329 assertion on WSAEACCES
-
Steven McCoy authored
-
Pieter Hintjens authored
{tcp|ipc}_listener: close socket when set_address () fails
-
Martin Hurton authored
-
Pieter Hintjens authored
Add unistd header to test
-
Ian Barber authored
For sleep and usleep
-
Pieter Hintjens authored
Add newline to end of new test file
-
Ian Barber authored
-
Pieter Hintjens authored
Add ZeroMQ branding.
-
Steven McCoy authored
-
- 12 Jun, 2012 8 commits
-
-
Pieter Hintjens authored
Add ZMQ_DELAY_ATTACH_ON_CONNECT sockopt
-
Pieter Hintjens authored
Update bind and connect documentation for clarity
-
Ian Barber authored
Rename the pipeset to terminating_pipes, as suggested by Martin H. Adds asserts to test the pipe is contained in the terminating set where appropriate.
-
Ian Barber authored
The previous note in connect introduced but did not elaborate on the requirement to bind before connect in inproc. As that discussion is in detail in the inproc docs link to there.
-
Ian Barber authored
Based on discussion with Steve O on the list, make the difference between bind and connect usage more clear, and add a note reflecting the fact that inproc must have bind before connect to reinforce the information in zmq_inproc.
-
Ian Barber authored
This patch, salvaged from a trainwreck accidental merge earlier, adds a new sockopt, ZMQ_DELAY_ATTACH_ON_CONNECT which prevents a end point being available to push messages to until it has fully connected, making connect work more like bind. This also applies to reconnecting sockets, which may cause message loss of in-queue messages, so it is sensible to use this in conjunction with a low HWM and potentially an alternative acknowledgement path. Notes on most of the individual commits can be found the repository log.
-
Ian Barber authored
This patch, salvaged from a trainwreck accidental merge earlier, adds a new sockopt, ZMQ_DELAY_ATTACH_ON_CONNECT which prevents a end point being available to push messages to until it has fully connected, making connect work more like bind. This also applies to reconnecting sockets, which may cause message loss of in-queue messages, so it is sensible to use this in conjunction with a low HWM and potentially an alternative acknowledgement path. Notes on most of the individual commits can be found the repository log.
-
Ian Barber authored
Revert "After speaking with Ben Gray and the discussion on the mailing list, this is an attempt to create a sockopt to allow connecting pipes to not immediately be available for traffic. The problem is in a PUSH to many PULL situation, where there is a connect to a PULL which is not there. This connect will immediately create a pipe (unlike bind), and traffic will be load balanced to that pipe. This means if there is a persistently unavailable end point then the traffic will queue until HWM is hit, and older messages will be lost." This reverts commit fe3fb419.
-