zmq_msg_size.txt 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. zmq_msg_size(3)
  2. ===============
  3. NAME
  4. ----
  5. zmq_msg_size - retrieve message content size in bytes
  6. SYNOPSIS
  7. --------
  8. *size_t zmq_msg_size (zmq_msg_t '*msg');*
  9. DESCRIPTION
  10. -----------
  11. The _zmq_msg_size()_ function shall return the size in bytes of the content of
  12. the message object referenced by 'msg'.
  13. CAUTION: Never access 'zmq_msg_t' members directly, instead always use the
  14. _zmq_msg_ family of functions.
  15. RETURN VALUE
  16. ------------
  17. Upon successful completion, _zmq_msg_size()_ shall return the size of the
  18. message content in bytes.
  19. ERRORS
  20. ------
  21. No errors are defined.
  22. SEE ALSO
  23. --------
  24. linkzmq:zmq_msg_data[3]
  25. linkzmq:zmq_msg_init[3]
  26. linkzmq:zmq_msg_init_size[3]
  27. linkzmq:zmq_msg_init_buffer[3]
  28. linkzmq:zmq_msg_init_data[3]
  29. linkzmq:zmq_msg_close[3]
  30. linkzmq:zmq[7]
  31. AUTHORS
  32. -------
  33. This page was written by the 0MQ community. To make a change please
  34. read the 0MQ Contribution Policy at <http://www.zeromq.org/docs:contributing>.