summaryrefslogtreecommitdiff
path: root/src/tcp_socket.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-03-24 14:48:50 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-03-24 14:48:50 +0100
commit17e82a361121dc81c90e17f1382dff678537b651 (patch)
tree25896e0124cf0f247ca9e754021458b3d2eac01a /src/tcp_socket.hpp
parenta2252de2bcecb672f09c8a5d0013cce23d1d404f (diff)
ZMQ_SNDBUF and ZMQ_RCVBUF type changed to int
This mimics POSIX specification. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/tcp_socket.hpp')
-rw-r--r--src/tcp_socket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tcp_socket.hpp b/src/tcp_socket.hpp
index 3cb5739..3312605 100644
--- a/src/tcp_socket.hpp
+++ b/src/tcp_socket.hpp
@@ -37,7 +37,7 @@ namespace zmq
~tcp_socket_t ();
// Associates a socket with a native socket descriptor.
- int open (fd_t fd_, uint64_t sndbuf_, uint64_t rcvbuf_);
+ int open (fd_t fd_, int sndbuf_, int rcvbuf_);
// Closes the underlying socket.
int close ();