- 29 Jun, 2013 2 commits
-
-
Martin Hurton authored
-
Martin Hurton authored
-
- 27 Jun, 2013 1 commit
-
-
Pieter Hintjens authored
- designed for TCP clients and servers - added HTTP client / server example in tests/test_stream.cpp - same as ZMQ_ROUTER + ZMQ_ROUTER_RAW + ZMQ_ROUTER_MANDATORY - includes b893ce set ZMQ_IDENTITY on outgoing connect - deprecates ZMQ_ROUTER_RAW
-
- 23 Jun, 2013 1 commit
-
-
Gavin authored
Identity stored during connect procedure. Can be read using zmq_getsockopt and used as the identity frame when sending messages. This allows the implementation of a raw socket client.
-
- 10 Jun, 2013 1 commit
-
-
shripchenko authored
now it properly works for ROUTER
-
- 06 Jun, 2013 1 commit
-
-
Martin Hurton authored
-
- 05 Jun, 2013 2 commits
-
-
Pieter Hintjens authored
- renamed to ZMQ_PROBE_ROUTER
-
shripchenko authored
implement it for DEALER tocket. +documentation
-
- 24 May, 2013 1 commit
-
-
shripchenko authored
-
- 23 May, 2013 2 commits
-
-
shripchenko authored
-
shripchenko authored
implement it for DEALER tocket. +documentation
-
- 21 May, 2013 4 commits
-
-
Pieter Hintjens authored
-
shripchenko authored
Add ROUTER socket option to introduce self(send an empty message) to new peers, to allow ROUTER<->ROUTER auto-discovery problem.
-
root authored
Add ROUTER socket option to introduce self(send an empty message) to new peers, to allow ROUTER<->ROUTER auto-discovery problem.
-
Pieter Hintjens authored
- made consistent with options.cpp code - added trace print for ongoing issue with Travis CI builds
-
- 12 Mar, 2013 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
Copyrights had become ads for Sustrik's corporate sponsors, going against the original agreement to share copyrights with the community (that agreement was: one line stating iMatix copyright + one reference to AUTHORS file). The proliferation of corporate ads is also unfair to the many individual authors. I've removed ALL corporate title from the source files so the copyright statements can now be centralized in AUTHORS and source files can be properly updated on an annual basis.
-
- 19 Feb, 2013 1 commit
-
-
Sébastien Rombauts authored
Fixed 7 MSVC2008 Compiler Warning (level 3) C4800: 'const int' : forcing value to bool 'true' or 'false' (performance warning) - added explicit test "(xxx != 0)" to get a "bool" value out of the "int" expression - see the MSDN recommandation http://msdn.microsoft.com/en-us/library/b6801kcy(v=vs.90).aspx
-
- 11 Dec, 2012 1 commit
-
-
Min(Dongmin Yu) authored
-
- 09 Dec, 2012 1 commit
-
-
Min(Dongmin Yu) authored
-
- 08 Dec, 2012 1 commit
-
-
Min(Dongmin Yu) authored
-
- 09 Nov, 2012 2 commits
-
-
Martin Hurton authored
-
Martin Hurton authored
-
- 06 Nov, 2012 1 commit
-
-
Pieter Hintjens authored
-
- 30 Oct, 2012 1 commit
-
-
Martin Hurton authored
-
- 29 Oct, 2012 1 commit
-
-
Hardeep authored
- Created a new option ZMQ_ROUTER_RAW_SOCK - Added new raw_encoder and raw_decoder to receive and send messages in raw form to remote client - Added test case file tests/test_raw_sock.cpp o To create a raw router sock set the ZMQ_ROUTER_RAW_SOCK option o ZMQ_MSGMORE flag is ignored for non-id messages o To terminate a remote connection send id message followed by zero length data message
-
- 24 Oct, 2012 1 commit
-
-
Pieter Hintjens authored
-
- 19 Oct, 2012 1 commit
-
-
Pieter Hintjens authored
-
- 08 Oct, 2012 1 commit
-
-
Pieter Hintjens authored
-
- 27 Aug, 2012 1 commit
-
-
Arthur O'Dwyer authored
Compiling without warnings is a good goal, because it makes new warnings (which probably indicate bugs) stand out rather than getting lost in the spam. My fixes fall into two categories: - Adding (void) casts of unused parameters, where their unusedness seems like a TODO (or in some cases a bug?). - Removing parameter names altogether, where the function is clearly a stub that will never use its parameters. Should be no change in behavior.
-
- 11 Aug, 2012 1 commit
-
-
Martin Hurton authored
Fixes #415.
-
- 31 Jul, 2012 1 commit
-
-
Martin Hurton authored
When a peer reconnects, the router socket receives an identity message containing this peer id. When this happens, the current implementation crashes. This patch makes a router socket to silently ignore all identity messages coming from reconnected peers.
-
- 11 Jul, 2012 1 commit
-
-
Martin Hurton authored
-
- 16 Jun, 2012 1 commit
-
-
Kobolog authored
-
- 27 May, 2012 1 commit
-
-
Martin Hurton authored
-
- 26 Apr, 2012 1 commit
-
-
Martin Hurton authored
The recv function accepted flags parameter but this was unused.
-
- 03 Apr, 2012 1 commit
-
-
Martin Hurton authored
-
- 02 Apr, 2012 2 commits
-
-
Martin Hurton authored
The current implementaion of router socket does not handle the full pipe and unroutable messages properly. Namely, in those cases, the socket could route some message parts into a wrong connection.
-
Martin Hurton authored
The new implementation allows one to send messages through a router socket to a peer even before receiving messages from this peer. Fixes issue #304
-
- 28 Mar, 2012 1 commit
-
-
Martin Hurton authored
-