mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-28 03:20:13 +01:00
Problem: zmq_msg_get_routing_id () is not consistent with API
We do not use 'get' for getters. Solution: rename to zmq_msg_routing_id () for public API.
This commit is contained in:
@@ -97,8 +97,8 @@ namespace zmq
|
||||
bool is_vsm () const;
|
||||
bool is_cmsg () const;
|
||||
bool is_zcmsg() const;
|
||||
uint32_t get_routing_id();
|
||||
int set_routing_id(uint32_t routing_id_);
|
||||
uint32_t get_routing_id ();
|
||||
int set_routing_id (uint32_t routing_id_);
|
||||
|
||||
// After calling this function you can copy the message in POD-style
|
||||
// refs_ times. No need to call copy.
|
||||
|
||||
Reference in New Issue
Block a user