1ZMQ_MSG_SET(3) 0MQ Manual ZMQ_MSG_SET(3)
2
3
4
6 zmq_msg_set - set message property
7
9 int zmq_msg_set (zmq_msg_t *message, int property, int value);
10
12 The zmq_msg_set() function shall set the property specified by the
13 property argument to the value of the value argument for the 0MQ
14 message fragment pointed to by the message argument.
15
16 Currently the zmq_msg_set() function does not support any property
17 names.
18
20 The zmq_msg_set() function shall return zero if successful. Otherwise
21 it shall return -1 and set errno to one of the values defined below.
22
24 EINVAL
25 The requested property property is unknown.
26
28 zmq_msg_get(3) zmq(7)
29
31 This page was written by the 0MQ community. To make a change please
32 read the 0MQ Contribution Policy at
33 http://www.zeromq.org/docs:contributing.
34
35
36
370MQ 4.3.4 07/22/2023 ZMQ_MSG_SET(3)