Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-07 | get rid of 'has virtual functions but non-virtual destructor' warnings in ↵ | Martin Sustrik | |
pipe.hpp | |||
2010-09-07 | Bug in fq_t and lb_t (when used via ZMQ_EVENTS option) fixed | Martin Sustrik | |
2010-09-04 | Merge branch 'maint' | Martin Sustrik | |
* maint: Version number incremented to 2.0.10 NEWS updated for 2.0.9 Conflicts: builds/msvc/platform.hpp configure.in | |||
2010-09-04 | Version number incremented to 2.0.10 | Martin Sustrik | |
2010-09-04 | NEWS updated for 2.0.9 | Martin Sustrik | |
2010-09-04 | Merge branch 'maint' | Martin Lucina | |
* maint: Update .gitignore doc: Add 0MQ version to XHTML11 backend footer build: Generate ChangeLog in 'make dist', ZIP automatically | |||
2010-09-04 | Update .gitignore | Martin Lucina | |
2010-09-04 | doc: Add 0MQ version to XHTML11 backend footer | Martin Lucina | |
Thanks to Matt Weinstein for the suggestion. | |||
2010-09-04 | build: Generate ChangeLog in 'make dist', ZIP automatically | Martin Lucina | |
Change 'make dist' to generate the Git ChangeLog file, that way it doesn't have to be manually updated nor kept in Git which causes unnecessary work. Also change 'make dist' to invoke 'dist-zip' automatically to generate a ZIP as well as a .tar.gz. Thanks to http://live.gnome.org/Git/ChangeLog for the inspiration to automatically generate ChangeLog. | |||
2010-09-04 | Merge branch 'maint' | Martin Sustrik | |
* maint: Broken device numbering reverted assert on malformed messages forwarder and streamer devices handle multi-part messages correctly improved null checking in zmq_term Conflicts: AUTHORS include/zmq.h src/zmq.cpp | |||
2010-09-04 | Broken device numbering reverted | Martin Sustrik | |
2010-09-04 | assert on malformed messages | Dhammika Pathirana | |
2010-09-04 | forwarder and streamer devices handle multi-part messages correctly | Jon Dyte | |
2010-09-04 | improved null checking in zmq_term | Ivo Danihelka | |
2010-09-04 | Merge branch 'maint' | Martin Lucina | |
* maint: zmq::select_t, zmq_poll(): assert if FD_SETSIZE reached zmq.h: Fix typo and use of C99 comment Conflicts: src/zmq.cpp | |||
2010-09-04 | zmq::select_t, zmq_poll(): assert if FD_SETSIZE reached | Martin Lucina | |
Ensure that 0MQ does not attempt to call select() on more than FD_SETSIZE file descriptors. | |||
2010-09-04 | zmq.h: Fix typo and use of C99 comment | Martin Lucina | |
2010-09-04 | Merge branch 'maint' | Martin Lucina | |
* maint: doc: Update zmq_socket(3) for 2.0.8 API changes Revert "Added man page for the zmq_device method" Revert "Added clean target that deletes generated man pages" Revert "Various changes to documentation project:" Revert "Reverting 'clean' change to Makefile" Revert "Removed empty man pages for old standalone devices" Revert "Further cleanups on reference manual" Revert "Small improvements to zmq_device(3) page" Revert "Removed wip zmq_deviced from master" | |||
2010-09-04 | doc: Update zmq_socket(3) for 2.0.8 API changes | Martin Lucina | |
2010-09-04 | Revert "Added man page for the zmq_device method" | Martin Lucina | |
This reverts commit f575f252c99c99d3622f313d6bbad6635197a1e4. Conflicts: doc/zmq_device.txt | |||
2010-09-04 | Revert "Added clean target that deletes generated man pages" | Martin Lucina | |
This reverts commit 6cd90304476c1c6873d67068009def63e520b848. | |||
2010-09-04 | Revert "Various changes to documentation project:" | Martin Lucina | |
This reverts commit 77a3c36ff1f11215229a4efdb821a3cb83a9d6fc. | |||
2010-09-04 | Revert "Reverting 'clean' change to Makefile" | Martin Lucina | |
This reverts commit c51de31f2fd31f782e419bfac2fb8d40d689f3e3. | |||
2010-09-04 | Revert "Removed empty man pages for old standalone devices" | Martin Lucina | |
This reverts commit 6ff193999d96487f7aa7e578980ab5554e61d8dc. | |||
2010-09-04 | Revert "Further cleanups on reference manual" | Martin Lucina | |
This reverts commit 13f3481e127a6b2390e847af6b01ee88f1b4ae61. Conflicts: doc/zmq_device.txt doc/zmq_tcp.txt | |||
2010-09-04 | Revert "Small improvements to zmq_device(3) page" | Martin Lucina | |
This reverts commit 96bcc9e6cf73781c31042278eb960c0363a78805. | |||
2010-09-04 | Revert "Removed wip zmq_deviced from master" | Martin Lucina | |
This reverts commit de0173754cc82f6c08875a892892f043a804554c. | |||
2010-09-02 | Merge branch 'maint' | Martin Sustrik | |
* maint: Prior to this patch prefix_tree asserts. Fix for signaler_t on HP-UX and AIX platforms Mikael Kjaer added to AUTHORS Conflicts: src/trie.cpp | |||
2010-09-02 | Prior 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-02 | Fix for signaler_t on HP-UX and AIX platforms | Bernd Melchers | |
2010-09-02 | Mikael Kjaer added to AUTHORS | Martin Sustrik | |
2010-09-01 | Merge branch 'maint' | Martin Sustrik | |
* maint: Erasure of retired fd's in select.cpp causes an assertion in MSVC 2008 STL | |||
2010-09-01 | Erasure of retired fd's in select.cpp causes an assertion in MSVC 2008 STL | Mikael 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-01 | Merge branch 'maint' | Martin Sustrik | |
* maint: maint: will become 2.0.9 Conflicts: builds/msvc/platform.hpp configure.in | |||
2010-09-01 | maint: will become 2.0.9 | Martin Sustrik | |
2010-09-01 | conflicts resolved | Martin Sustrik | |
2010-09-01 | sys transport introdced; inproc://log moved to sys://log | Martin Sustrik | |
2010-09-01 | MSVC build fixed | Martin Sustrik | |
2010-09-01 | context creates an inproc endpoint ('inproc://log') to distribute 0MQ's log ↵ | Martin Sustrik | |
messages | |||
2010-09-01 | assert when pipe attaches to PUB socket in process of termination -- fixed | Martin Sustrik | |
2010-09-01 | pipe being attached to the PAIR socket during its termination process is ↵ | Martin Sustrik | |
immediately asked to terminate itself | |||
2010-09-01 | hangup when closing socket with no pipes attached -- fixed | Martin Sustrik | |
2010-08-31 | naming cleanup: yarray->array | Martin Sustrik | |
2010-08-31 | naming cleanup: zmq_encoder->encoder, zmq_decoder->decoder | Martin Sustrik | |
2010-08-30 | OSX build fixed -- semaphore replaced by mutex | Martin Sustrik | |
2010-08-30 | Minor patch to zmq_cpp(7) | Martin Sustrik | |
2010-08-30 | Issue 54 - socket_base.cpp:162 comparison error | Martin Sustrik | |
2010-08-28 | MSVC build fixed | Martin Sustrik | |
2010-08-28 | Added tests for transports per socket | Guido Goldstein | |
2010-08-28 | prefix_tree_t renamed to trie_t | Martin Sustrik | |