From e4e646a6a9982ff932d83633157106a0b34975a2 Mon Sep 17 00:00:00 2001 From: "Staysail Systems, Inc" Date: Fri, 1 Mar 2024 07:04:14 -0800 Subject: Manual page updates for v1.7.3 --- man/v1.7.3/nng_msg_append.3.html | 84 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 man/v1.7.3/nng_msg_append.3.html (limited to 'man/v1.7.3/nng_msg_append.3.html') diff --git a/man/v1.7.3/nng_msg_append.3.html b/man/v1.7.3/nng_msg_append.3.html new file mode 100644 index 00000000..613df8f9 --- /dev/null +++ b/man/v1.7.3/nng_msg_append.3.html @@ -0,0 +1,84 @@ +--- +version: v1.7.3 +layout: manpage_v2 +title: nng_msg_append(3) +--- +

nng_msg_append(3)

+
+

NAME

+
+
+

nng_msg_append - append to message body

+
+
+
+
+

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.

+
+
+
+
+
+

SEE ALSO

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