- 02 May, 2018 1 commit
-
-
Lionel Flandrin authored
-
- 14 Sep, 2017 1 commit
-
-
Reza Ebrahimi authored
-
- 13 Sep, 2017 1 commit
-
-
Thomas Köppe authored
Relevant commits: ddb82a54, 68f5926e Also adds AUTHORS entry that should have been part of the previous commits.
-
- 21 Mar, 2017 1 commit
-
-
a4z authored
Soloution: add me on the authors list
-
- 27 Sep, 2016 1 commit
-
-
Luca Boccassi authored
Solution: add it. Some of the work that I do happens during working hours and hence the copyright belongs to my employer, Brocade Communications Systems Inc. Note this in the AUTHORS file.
-
- 14 Sep, 2016 1 commit
-
-
Kouhei Sutou authored
Solution: Use only lower case for header file name. We can find "wincrypt.h" by "WinCrypt.h" on Windows because Windows uses case insensitive file system. But we can't find "wincrypt.h" by "WinCrypt.h" on Linux Because Linux uses case sensitive file system.
-
- 16 May, 2016 1 commit
-
-
Bitiquinho authored
-
- 30 Apr, 2016 2 commits
-
-
hitstergtd authored
Solution: sort it and strip trailing whitespaces
-
hitstergtd authored
Solution: plug myself in
-
- 17 Feb, 2016 1 commit
-
-
Osiris authored
Solution: Use CMD.EXE environment variable to extract DevStudio version number and build using it. This even supports machines with multiple DevStudio versions installed, as long as the build for each version is done on a separate window with the correct environment. If multiple version builds are desired from a single CMD.EXE, edit the buildall.bat file to uncomment the build statements for each specific version desired.
-
- 11 Feb, 2016 1 commit
-
-
Pieter Hintjens authored
- they have no copyright / license statement - they are in some randomish directory structure - they are a mix of postable and non-portable files - they do not conform to conditional compile environment Overall, it makes it rather more work than needed, in build scripts. Solution: clean up tweetnacl sauce. - merged code into single tweetnacl.c and .h - standard copyright header, DJB to AUTHORS - moved into src/ along with all other source files - all system and conditional compilation hidden in these files - thus, they can be compiled and packaged in all cases - ZMQ_USE_TWEETNACL is set when we're using built-in tweetnacl - HAVE_LIBSODIUM is set when we're using external libsodium
-
- 03 Feb, 2016 1 commit
-
-
Luca Boccassi authored
Solution: add myself to the list
-
- 08 Dec, 2015 1 commit
-
-
Ilya Kulakov authored
VMCI transport allows fast communication between the Host and a virtual machine, between virtual machines on the same host, and within a virtual machine (like IPC). It requires VMware to be installed on the host and Guest Additions to be installed on a guest.
-
- 25 Sep, 2015 1 commit
-
-
Constantin Rack authored
-
- 01 May, 2015 1 commit
-
-
Rik van der Heijden authored
-
- 26 Nov, 2014 1 commit
-
-
Doron Somech authored
-
- 12 Aug, 2014 1 commit
-
-
Pieter Hintjens authored
-
- 12 Jul, 2014 1 commit
-
-
Thomas Rodgers authored
-
- 03 Jun, 2014 1 commit
-
-
Pieter Hintjens authored
Solution: remove these email addresses, since authors are reachable via their Git commit history.
-
- 24 Apr, 2014 2 commits
-
-
Chris Busbey authored
-
Mike Gatny authored
-
- 10 Mar, 2014 1 commit
-
-
Drew Crawford authored
This patch is proposed for https://github.com/zeromq/libzmq/issues/912. If a user specifies that they want libzmq built with libsodium, and the requirement cannot be satisfied, we should error at the user so they can either A) install libsodium to a reasonable location or B) relax their requirement for libsodium support. Previously a warning was issued in this case, causing users who wanted libsodium support not to get it, which may be discovered at a much later time when their programs didn't work as expected. I release this patch under the LGPL v3 or any later version.
-
- 20 Jan, 2014 1 commit
-
-
Tim M authored
-
- 15 Jan, 2014 1 commit
-
-
Andre Caron authored
When a ZMQ_STREAM socket connection is broken (intentionally, via `shutdown()` or accidentally via client crash or network failure), there is no way for the application to dertermine that it should drop per-connection data (such as buffers). This contribution makes sure the application receives a 0-length message to notify it that the connection has been broken. This is symmetric with the process of closing the connection from within the application (where the application sends a 0-length message to tell ZeroMQ to close the connection). Conflicts: CMakeLists.txt
-
- 02 Jan, 2014 2 commits
-
-
Pieter Hintjens authored
-
Pieter Hintjens authored
- corporate copyright statements sit in AUTHORS file
-
- 15 Dec, 2013 1 commit
-
-
Trevor Bernard authored
-
- 07 Nov, 2013 1 commit
-
-
Mark Barbisan authored
-
- 01 Nov, 2013 1 commit
-
-
Erik Hugne authored
The tests are identical to the TCP ones, only the addressing is changed. Signed-off-by: Erik Hugne <erik.hugne@ericsson.com>
-
- 18 Oct, 2013 1 commit
-
-
Laurent Alebarde authored
-
- 04 Oct, 2013 1 commit
-
-
Brandon Carpenter authored
Converts an initial strudel or "at sign" (@) in the Unix socket path to a NULL character ('\0') indicating that the socket uses the abstract namespace instead of the filesystem namespace. For instance, binding a socket to 'ipc://@/tmp/tester' will not create a file associated with the socket whereas binding to 'ipc:///tmp/tester' will create the file /tmp/tester. See issue 567 for more information.
-
- 19 Sep, 2013 4 commits
-
-
Richard Newton authored
-
Richard Newton authored
This reverts commit 0640d6d2.
-
Richard Newton authored
-
Richard Newton authored
-
- 14 Jul, 2013 1 commit
-
-
Christian Kamm authored
* Add lb_t::sendpipe() that returns the pipe that was used for sending, similar to fq_t::recvpipe(). * Add forwarder functions to dealer_t to access these two. * Add logic to req_t to ignore replies on pipes that are not the one where the request was sent. * Enable test in test_spec_req.
-
- 20 Mar, 2013 2 commits
-
-
Ken Steele authored
For atomic_counter and atomic_ptr classes, detect the Tile architecture using #if defined __tile__ matching ARM and Solaris and then use the Tile atomic instructions. Without this change, the default Mutex implementation is used, which is slower.
-
Pieter Hintjens authored
-
- 26 Feb, 2013 1 commit
-
-
Attila Mark authored
- option to set number of zmq threads on the command line for local_thr - option to set number of zmq_threads and workers in remote_thr - option to set SND/RCV buffer sizes on command line - option to set whether to PUSH/PULL on command line - option to set to use zmq_recv or zmq_msg for transfer on command line - better timing function - corrected and improved throughput reporting - HWM and DELAY socket options
-
- 04 Dec, 2012 1 commit
-
-
Stefan Radomski authored
- fixes LIBZMQ-476 and LIBZMQ-475
-