- 02 Sep, 2010 3 commits
-
-
Jon Dyte authored
This is because as it adds the 255th element at a node it attempts to calculate the count member var which is an unsigned char via count = (255 -0) + 1; and pass the result to realloc. Unfortunately the result is zero and realloc returns null; the prefix_tree asserts. I have fixed it by making the count an unsigned short.
-
Bernd Melchers authored
-
Martin Sustrik authored
-
- 01 Sep, 2010 2 commits
-
-
Mikael Helbo Kjær authored
I was hitting an issue with an SCL enabled STL library in connection with the way select_t::loop was erasing retired fd's. The problem as identified by the SCL assertion was that by the time the iterator given to the erase method was called it was considered invalid by the library. I am not sure this isn't just a "quirk" of the MSVC STL library as the other code looks valid to me as well.
-
Martin Sustrik authored
-
- 25 Aug, 2010 7 commits
-
-
Martin Lucina authored
-
Martin Lucina authored
Add some basic documentation for XREQ/XREP socket types, including a brief description of the most common use case (REQ -> XREP) and (XREQ -> REP).
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
Martin Lucina authored
-
Martin Lucina authored
Function returning unsigned long int cannot return (-1)
-
- 21 Aug, 2010 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 19 Aug, 2010 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
- 18 Aug, 2010 1 commit
-
-
Martin Sustrik authored
-
- 11 Aug, 2010 3 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
http://github.com/zeromq/zeromq2/issues#issue/46 Invalid messages are now discarded silently, instead of causing an assertion failure.
-
Pieter Hintjens authored
-
- 10 Aug, 2010 1 commit
-
-
Pieter Hintjens authored
-
- 08 Aug, 2010 1 commit
-
-
Pieter Hintjens authored
* Fixed zmq_term, zmq_socket, zmq_close, zmq_setsockopt, * zmq_getsockopt, zmq_bind, zmq_connect, zmq_send, * zmq_recv, zmq_poll, zmq_device, zmq_stopwatch_stop * Updated Reference Manual for these methods
-
- 07 Aug, 2010 1 commit
-
-
Pieter Hintjens authored
* zmq_term * zmq_socket * zmq_close * zmq_setsockopt * zmq_getsockopt * zmq_bind * zmq_connect * zmq_send * zmq_recv * zmq_poll * zmq_device * zmq_stopwatch_stop
-
- 06 Aug, 2010 3 commits
-
-
Martin Lucina authored
-
Martin Lucina authored
-
Pieter Hintjens authored
-
- 05 Aug, 2010 3 commits
-
-
Martin Lucina authored
-
Martin Lucina authored
This patch restarts the send() or recv() inside zmq::signaler_t if the call fails due to EINTR.
-
Pieter Hintjens authored
-
- 04 Aug, 2010 8 commits
-
-
Pieter Hintjens authored
* Clarified broker model and proxy model * Added example of proxy model
-
Pieter Hintjens authored
- fixed unwrapped text in new man pages - fixed over-long lines in older pages, where possible - removed reference to old standalong devices from index page - added refernce to new zmq_device[3] documented from index page - some minor spelling corrections
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
* Added documentation for zmq_deviced, which we're developing * Created consistent page footer in documentation template * Page footer notes doc authors and copyright statement
-
Pieter Hintjens authored
-
Pieter Hintjens authored
-
Pieter Hintjens authored
definitions as aliases, to be removed in release 3.0. Also renamed the source files implementing these two socket types. This change does not break existing applications nor bindings, but allows us to fix the documentation and user guide now, rather than keeping the old (confusing) names.
-
- 30 Jul, 2010 1 commit
-
-
Martin Lucina authored
This reverts part of commit 84e0c799 to get correct ZMQ_HWM semantics with XREQ sockets: When sending a message to an XREQ socket, the underlying pipe is selected in a round-robin fashion. If an underlying pipe is full it is skipped. If there are no underlying pipes, or all underlying pipes are full then zmq_send() shall block or return EAGAIN, depending on whether or not the call is blocking. Messages are never dropped.
-
- 26 Jul, 2010 1 commit
-
-
Martin Hurton authored
-
- 24 Jul, 2010 1 commit
-
-
Martin Hurton authored
-