- 11 Jun, 2012 2 commits
-
-
Ian Barber authored
Add a new section to the connect delay test that disconnects and reconnects a socket to ensure that some messages are appropriately blocked.
-
Ian Barber authored
Filter read and write activated calls from the pipe to the session, and delay shutdown in terminated until the final pipe is shutdown.
-
- 10 Jun, 2012 4 commits
-
-
Ian Barber authored
As Martin pointed out, there is a race condition in the old code where a pipe could start shutting down after disconnection, but the new one could connect first. This connection would not get a pipe created for it, so the messages could never flow. The simplest way round this would be a flag, but it is possibly for a very bouncy but fast connection to go up and down twice I imagine, so instead I have added a counter. This starts at zero, and will null out the pipe if terminate is called while it is zero. On a disconnect situation the counter is incremented, and the pipe is the not nulled if the value is non zero. In the terminated function it is decremented for each pipe that is shut down, and the assertion that the terminated pipe == the current pipe is skipped while it is non-zero. This should deal with the race condition and not allow any extra terminated() calls without hitting the assertion.
-
-
Ian Barber authored
Use struct keyword consistently with sockaddr and sockaddr_in
-
Martin Hurton authored
-
- 09 Jun, 2012 4 commits
-
-
Pieter Hintjens authored
Small code simplification
-
Pieter Hintjens authored
Fix the message decoder to ignore reserved flags.
-
Martin Hurton authored
-
Martin Hurton authored
Failing to clear the reserved flags, the decoder may produce messages with 'identity' and 'shared' flags set. This unintended modification of message flags can lead to memory errors or asserion failures. Fixes issue #309
-
- 08 Jun, 2012 8 commits
-
-
Ian Barber authored
-
Ian Barber authored
-
-
Ian Barber authored
Use the hiccup mechanism to notify the socket end of the pair of the change in state, and have it shutdown that end, and shutdown the local end normally. This seems to resolve the shutdown and race condition issues.
-
Ian Barber authored
Consolidate TCP-specific common code into their own files.
-
Hiten P authored
The TCP keepalive tuning code has been moved into the newly added files; this also allows future TCP-specific code to be added into these files, without bloating the IP level code and establishes a known file structure for other IP-based transports. Remember: this is a no-op change, hence no API or functionality was changed as part of this commit.
-
Ian Barber authored
Change connection failure test to use an invalid hostname
-
Hiten P authored
- invalid hostname set to 0mq.is.the.best (naturally!) - issue happens as other valid-like non-existent hostnames were redirected by buggy Cable/ISP DNS servers
-
- 06 Jun, 2012 7 commits
-
-
Ian Barber authored
Reverted to a simpler shutdown. This seems to disconnect and reconnect the pipe properly, but there is a problem in overall shutdown when the pipe has blocked and reconnected - the session seems to get terminated() called on it only in shutdown for the original pipe, by which point it has been replaced. I am not sure at the moment why this only happens then, but this does mean this patch is broken at the moment
-
Ian Barber authored
Remove unused variable which causes build to fail with -Werror
-
Ian Barber authored
Check if SO_NOSIGPIPE is defined
-
Alessandro Ghedini authored
-
Alessandro Ghedini authored
-
Ian Barber authored
Bumped version for next release (3.3.0)
-
Pieter Hintjens authored
-
- 05 Jun, 2012 9 commits
-
-
Ian Barber authored
The previous code to block the socket from receiving on that pipe during a disconnect was vulnerable to a race condition. This code calls with the terminate functions of both ends of the pipe - I believe this should be safer. This required storing a pointer to the socket end of the pipe
-
Ian Barber authored
When detaching a pipe, as well as checking the delay on connect sockopt is set, also ensure that the protocol is not pgm or epgm as we are not implementing the functionality for multicase types
-
Ian Barber authored
Fix build on HPUX 11iv3
-
-
Pieter Hintjens authored
Fix up build on AIX7
-
Pieter Hintjens authored
Fix build on RHEL5 and SLES10
-
AJ Lewis authored
The socket length variable for getsockname and accept must be an (int *) instead of a (socklen_t *) on HPUX. Signed-off-by: AJ Lewis <aj.lewis@quantum.com>
-
AJ Lewis authored
GCC 4.1.2 on RHEL5 and SLES10 don't like not having a newline at the end of a source file, and error out if it's missing. Signed-off-by: AJ Lewis <aj.lewis@quantum.com>
-
AJ Lewis authored
Copy logic from zmq.cpp into device.cpp for getting poll.h included. Ensure that zmq.h is included *after* poll.h in both zmq.cpp and device.cpp. Signed-off-by: AJ Lewis <aj.lewis@quantum.com>
-
- 04 Jun, 2012 5 commits
-
-
Ian Barber authored
-
Ian Barber authored
Removing unnecessary outpipe values that had been used for reconnecting existing pipes - no longer needed when using a pipe term for the delay_attach situation.
-
Ian Barber authored
-
Ian Barber authored
Remove unnecessary extra test in pipe assertion - now we are terminating pipes we don't need to allow the case in which a pipe is rebound to the same sink
-
Ian Barber authored
On the advice of Martin Hurton, removed the new command type and just terminated the pipe in a reconnect situation, and notified the socket of the same. This handles the blocking properly, but at the cost of potentially losing in flight messages. However, this is a reasonable trade off given how much simpler it makes the patch.
-
- 03 Jun, 2012 1 commit
-
-
Ian Barber authored
Rebinding on reconnection to allow for the pipe blocking will set the event sink again, which will cause an assert to be triggered. I have modified that to allow for setting the same sink to be OK. I believe this should be ok - on termination, if a pipe hasn't reconnected, it would just attempt to be erased from the pipes list again, which is reasonable
-