summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-03-27 14:50:35 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-03-27 14:50:35 +0100
commit8d8e0857be3d2ab941de443e436061ef82752c17 (patch)
treea49dc3d89876301b907ae2ecdc05f69acc9fc063 /include
parent06538fc11790a0cf895c43d137a33febf97f3a28 (diff)
as advertised, zmq_flush and ZMQ_NOFLUSH were removed
Diffstat (limited to 'include')
-rw-r--r--include/zmq.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/zmq.h b/include/zmq.h
index 7d8d8ad..1d99254 100644
--- a/include/zmq.h
+++ b/include/zmq.h
@@ -181,7 +181,6 @@ ZMQ_EXPORT int zmq_term (void *context);
#define ZMQ_RCVBUF 12
#define ZMQ_NOBLOCK 1
-#define ZMQ_NOFLUSH 2
ZMQ_EXPORT void *zmq_socket (void *context, int type);
ZMQ_EXPORT int zmq_close (void *s);
@@ -190,7 +189,6 @@ ZMQ_EXPORT int zmq_setsockopt (void *s, int option, const void *optval,
ZMQ_EXPORT int zmq_bind (void *s, const char *addr);
ZMQ_EXPORT int zmq_connect (void *s, const char *addr);
ZMQ_EXPORT int zmq_send (void *s, zmq_msg_t *msg, int flags);
-ZMQ_EXPORT int zmq_flush (void *s);
ZMQ_EXPORT int zmq_recv (void *s, zmq_msg_t *msg, int flags);
////////////////////////////////////////////////////////////////////////////////