mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 04:17:57 +01:00
ZMQII-16: Change "struct zmq_msg_t" to "zmq_msg_t" in C binding
This commit is contained in:
@@ -122,7 +122,7 @@ int zmq::sub_t::xsetsockopt (int option_, const void *optval_,
|
||||
return -1;
|
||||
}
|
||||
|
||||
int zmq::sub_t::xsend (struct zmq_msg_t *msg_, int flags_)
|
||||
int zmq::sub_t::xsend (zmq_msg_t *msg_, int flags_)
|
||||
{
|
||||
errno = ENOTSUP;
|
||||
return -1;
|
||||
@@ -134,7 +134,7 @@ int zmq::sub_t::xflush ()
|
||||
return -1;
|
||||
}
|
||||
|
||||
int zmq::sub_t::xrecv (struct zmq_msg_t *msg_, int flags_)
|
||||
int zmq::sub_t::xrecv (zmq_msg_t *msg_, int flags_)
|
||||
{
|
||||
while (true) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user