summaryrefslogtreecommitdiff
path: root/src/xszmq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xszmq.cpp')
-rw-r--r--src/xszmq.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xszmq.cpp b/src/xszmq.cpp
index d7199f9..f6e6fa1 100644
--- a/src/xszmq.cpp
+++ b/src/xszmq.cpp
@@ -355,12 +355,14 @@ int zmq_getsockopt (void *s, int option, void *optval,
int zmq_bind (void *s, const char *addr)
{
- return xs_bind (s, addr);
+ int rc = xs_bind (s, addr);
+ return rc < 0 ? -1 : 0;
}
int zmq_connect (void *s, const char *addr)
{
- return xs_connect (s, addr);
+ int rc = xs_connect (s, addr);
+ return rc < 0 ? -1 : 0;
}
int zmq_send (void *s, zmq_msg_t *msg, int flags)