Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
001ddd80
Commit
001ddd80
authored
May 04, 2016
by
Doron Somech
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1958 from hitstergtd/x-deprecate-zmq-sendrecviov-fix
Problem: zmq_sendiov/zmq_recviov not Deprecated
parents
a46d7b99
b3bb0b7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
zmq.h
include/zmq.h
+3
-6
No files found.
include/zmq.h
View file @
001ddd80
...
...
@@ -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. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment