zmq_msg_data.txt 898 Bytes
Newer Older
1 2 3 4 5 6
zmq_msg_data(3)
===============


NAME
----
Martin Lucina's avatar
Martin Lucina committed
7
zmq_msg_data - retrieve pointer to message content
8 9 10 11


SYNOPSIS
--------
Martin Lucina's avatar
Martin Lucina committed
12
*void *zmq_msg_data (zmq_msg_t '*msg');*
13 14 15 16


DESCRIPTION
-----------
Martin Lucina's avatar
Martin Lucina committed
17 18 19 20 21
The _zmq_msg_data()_ function shall return a pointer to the message content of
the message object referenced by 'msg'.

CAUTION: Never access 'zmq_msg_t' members directly, instead always use the
_zmq_msg_ family of functions.
22 23 24 25


RETURN VALUE
------------
Martin Lucina's avatar
Martin Lucina committed
26 27
Upon successful completion, _zmq_msg_data()_ shall return a pointer to the
message content.
28 29 30 31 32 33 34 35 36


ERRORS
------
No errors are defined.


SEE ALSO
--------
Martin Lucina's avatar
Martin Lucina committed
37
linkzmq:zmq_msg_size[3]
38 39 40 41
linkzmq:zmq_msg_init[3]
linkzmq:zmq_msg_init_size[3]
linkzmq:zmq_msg_init_data[3]
linkzmq:zmq_msg_close[3]
Martin Lucina's avatar
Martin Lucina committed
42
linkzmq:zmq[7]
43 44


45 46
AUTHORS
-------
47 48
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>.