2023-10-21 01:50:38 +02:00
|
|
|
= zmq_msg_set(3)
|
2012-02-16 01:41:09 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== NAME
|
2012-02-16 01:41:09 +01:00
|
|
|
|
2012-03-21 20:19:40 +01:00
|
|
|
zmq_msg_set - set message property
|
2012-02-16 01:41:09 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SYNOPSIS
|
2012-03-21 20:19:40 +01:00
|
|
|
*int zmq_msg_set (zmq_msg_t '*message', int 'property', int 'value');*
|
2012-02-16 01:41:09 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== DESCRIPTION
|
2012-03-21 20:19:40 +01:00
|
|
|
The _zmq_msg_set()_ function shall set the property specified by the
|
|
|
|
'property' argument to the value of the 'value' argument for the 0MQ
|
|
|
|
message fragment pointed to by the 'message' argument.
|
2012-02-16 01:41:09 +01:00
|
|
|
|
2012-03-21 20:19:40 +01:00
|
|
|
Currently the _zmq_msg_set()_ function does not support any property names.
|
2012-02-16 01:41:09 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== RETURN VALUE
|
2012-02-16 02:28:29 +01:00
|
|
|
The _zmq_msg_set()_ function shall return zero if successful. Otherwise it
|
2012-02-16 01:41:09 +01:00
|
|
|
shall return `-1` and set 'errno' to one of the values defined below.
|
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== ERRORS
|
2012-02-16 01:41:09 +01:00
|
|
|
*EINVAL*::
|
2012-03-21 20:19:40 +01:00
|
|
|
The requested property _property_ is unknown.
|
2012-02-16 01:41:09 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== SEE ALSO
|
|
|
|
xref:zmq_msg_get.adoc[zmq_msg_get]
|
|
|
|
xref:zmq.adoc[zmq]
|
2012-02-16 01:41:09 +01:00
|
|
|
|
|
|
|
|
2023-10-21 01:50:38 +02:00
|
|
|
== AUTHORS
|
2013-04-11 18:53:02 +02:00
|
|
|
This page was written by the 0MQ community. To make a change please
|
|
|
|
read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.
|