Commit 001ddd80 authored by Doron Somech's avatar Doron Somech

Merge pull request #1958 from hitstergtd/x-deprecate-zmq-sendrecviov-fix

Problem: zmq_sendiov/zmq_recviov not Deprecated
parents a46d7b99 b3bb0b7f
......@@ -451,7 +451,9 @@ ZMQ_EXPORT int zmq_has (const char *capability);
ZMQ_EXPORT int zmq_device (int type, void *frontend, void *backend);
ZMQ_EXPORT int zmq_sendmsg (void *s, zmq_msg_t *msg, int flags);
ZMQ_EXPORT int zmq_recvmsg (void *s, zmq_msg_t *msg, int flags);
struct iovec;
ZMQ_EXPORT int zmq_sendiov (void *s, struct iovec *iov, size_t count, int flags);
ZMQ_EXPORT int zmq_recviov (void *s, struct iovec *iov, size_t *count, int flags);
/******************************************************************************/
/* Encryption functions */
......@@ -485,11 +487,6 @@ ZMQ_EXPORT void zmq_atomic_counter_destroy (void **counter_p);
/* page, and (b) write a test case in tests. */
/******************************************************************************/
struct iovec;
ZMQ_EXPORT int zmq_sendiov (void *s, struct iovec *iov, size_t count, int flags);
ZMQ_EXPORT int zmq_recviov (void *s, struct iovec *iov, size_t *count, int flags);
/* Helper functions are used by perf tests so that they don't have to care */
/* about minutiae of time-related functions on different OS platforms. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment