From ab2876990352923ea16b0ae701e87b70c4c0d187 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Sun, 29 Dec 2019 23:08:41 -0800 Subject: man page updates for 1.2.2 --- man/v1.2.2/nng_msg_append.3.html | 595 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 595 insertions(+) create mode 100644 man/v1.2.2/nng_msg_append.3.html (limited to 'man/v1.2.2/nng_msg_append.3.html') diff --git a/man/v1.2.2/nng_msg_append.3.html b/man/v1.2.2/nng_msg_append.3.html new file mode 100644 index 00000000..bf56800b --- /dev/null +++ b/man/v1.2.2/nng_msg_append.3.html @@ -0,0 +1,595 @@ +--- +version: 1.2.2 +layout: refman +--- + + + + + + + +nng_msg_append(3) + + + + + + + +
+
+

SYNOPSIS

+
+
+
+
#include <nng/nng.h>
+
+int nng_msg_append(nng_msg *msg, const void *val, size_t size);
+int nng_msg_append_u16(nng_msg *msg, uint16_t val16);
+int nng_msg_append_u32(nng_msg *msg, uint32_t val32);
+int nng_msg_append_u64(nng_msg *msg, uint64_t val64);
+
+
+
+
+
+

DESCRIPTION

+
+
+

The nng_msg_append() family of functions appends data to +the end of the body of message msg, reallocating it if necessary. +The first function appends size bytes, copying them from val. +The remaining functions append the value specified (such as val32) in +network-byte order (big-endian).

+
+
+
+
+

RETURN VALUES

+
+
+

These functions return 0 on success, and non-zero otherwise.

+
+
+
+
+

ERRORS

+
+
+ + + + + +
+NNG_ENOMEM + +

Insufficient free memory exists.

+
+
+
+
+ +
+ + -- cgit v1.2.3-70-g09d2