summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-04Revert "Added clean target that deletes generated man pages"Martin Lucina
This reverts commit 6cd90304476c1c6873d67068009def63e520b848.
2010-09-04Revert "Various changes to documentation project:"Martin Lucina
This reverts commit 77a3c36ff1f11215229a4efdb821a3cb83a9d6fc.
2010-09-04Revert "Reverting 'clean' change to Makefile"Martin Lucina
This reverts commit c51de31f2fd31f782e419bfac2fb8d40d689f3e3.
2010-09-04Revert "Removed empty man pages for old standalone devices"Martin Lucina
This reverts commit 6ff193999d96487f7aa7e578980ab5554e61d8dc.
2010-09-04Revert "Further cleanups on reference manual"Martin Lucina
This reverts commit 13f3481e127a6b2390e847af6b01ee88f1b4ae61. Conflicts: doc/zmq_device.txt doc/zmq_tcp.txt
2010-09-04Revert "Small improvements to zmq_device(3) page"Martin Lucina
This reverts commit 96bcc9e6cf73781c31042278eb960c0363a78805.
2010-09-04Revert "Removed wip zmq_deviced from master"Martin Lucina
This reverts commit de0173754cc82f6c08875a892892f043a804554c.
2010-09-02Prior to this patch prefix_tree asserts.Jon Dyte
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.
2010-09-02Fix for signaler_t on HP-UX and AIX platformsBernd Melchers
2010-09-02Mikael Kjaer added to AUTHORSMartin Sustrik
2010-09-01Erasure of retired fd's in select.cpp causes an assertion in MSVC 2008 STLMikael Helbo Kjær
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.
2010-09-01maint: will become 2.0.9Martin Sustrik
2010-08-25Update ChangeLog for v2.0.8Martin Lucina
2010-08-25Basic documentation for XREQ/XREP socket typesMartin Lucina
Add some basic documentation for XREQ/XREP socket types, including a brief description of the most common use case (REQ -> XREP) and (XREQ -> REP).
2010-08-25Updated NEWS for stable 2.0.8 releasePieter Hintjens
2010-08-25Updated NEWS for stable 2.0.8 releasePieter Hintjens
2010-08-25Updated NEWS for stable 2.0.8 releasePieter Hintjens
2010-08-25Update version number to 2.0.8Martin Lucina
2010-08-25zmq_stopwatch_stop: Don't return EFAULTMartin Lucina
Function returning unsigned long int cannot return (-1)
2010-08-21Added calls to zmq_msg_close in examplesPieter Hintjens
2010-08-21Fixed example for multipart zmq_recv()Pieter Hintjens
2010-08-20Merge branch '46_device_robustness'Pieter Hintjens
2010-08-19Fixed git URL in READMEPieter Hintjens
2010-08-18documentation leftover from v2.0.6 cleaned in zmq(7)Martin Sustrik
2010-08-11Removed wip zmq_deviced from masterPieter Hintjens
2010-08-1146 - Devices vulnerable to invalid messagesPieter Hintjens
http://github.com/zeromq/zeromq2/issues#issue/46 Invalid messages are now discarded silently, instead of causing an assertion failure.
2010-08-11Fixed (un)signed type errors in get/setsockopt manualPieter Hintjens
2010-08-10Modified zmq_tcp(7) to emphasize wildcard interfacesPieter Hintjens
2010-08-08Added error checking (EFAULT) for null argumentsPieter Hintjens
* 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
2010-08-07Added not-null assertions on pointer arguments in C API functionsPieter Hintjens
* 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
2010-08-06Merge branch 'master' of github.com:zeromq/zeromq2Martin Lucina
2010-08-06Fix uninitialized use of nbytes in signaler fixMartin Lucina
2010-08-06Merge branch 'master' of github.com:zeromq/zeromq2Pieter Hintjens
2010-08-05Merge branch 'master' of github.com:zeromq/zeromq2Martin Lucina
2010-08-05zmq::signaler_t: Restart syscalls on EINTRMartin Lucina
This patch restarts the send() or recv() inside zmq::signaler_t if the call fails due to EINTR.
2010-08-05Fixed MSVC project for PULL/PUSHPieter Hintjens
2010-08-04Small improvements to zmq_device(3) pagePieter Hintjens
* Clarified broker model and proxy model * Added example of proxy model
2010-08-04Further cleanups on reference manualPieter Hintjens
- 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
2010-08-04Removed empty man pages for old standalone devicesPieter Hintjens
2010-08-04Reverting 'clean' change to MakefilePieter Hintjens
2010-08-04Various changes to documentation project:Pieter Hintjens
* Added documentation for zmq_deviced, which we're developing * Created consistent page footer in documentation template * Page footer notes doc authors and copyright statement
2010-08-04Added clean target that deletes generated man pagesPieter Hintjens
2010-08-04Added man page for the zmq_device methodPieter Hintjens
2010-08-04Renamed ZMQ_UPSTREAM to ZMQ_PULL, and ZMQ_DOWNSTREAM to ZMQ_PUSH. Left the oldPieter Hintjens
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.
2010-07-30XREQ: Correct behaviour on hitting ZMQ_HWMMartin Lucina
This reverts part of commit 84e0c7991a9b316ed571533abc628cc1175750a3 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.
2010-07-26perf: fix typoMartin Hurton
2010-07-24pipe: check_read() should check for message delimiterMartin Hurton
2010-07-24Make sure lwm > 0 when hwm > 0Martin Hurton
2010-07-21Issue 42 - getaddrinfo() failsMartin Lucina
2010-07-19EHOSTUNREACH is a valid return value from recv()Martin Sustrik