From 8b8fdbdc2e3fef03e21177eb3710491e4c080d43 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Thu, 23 Jan 2020 23:24:04 -0800 Subject: Publishing updates for v1.2.4 --- man/v1.2.4/nng_sockaddr_inproc.5.html | 109 ++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 man/v1.2.4/nng_sockaddr_inproc.5.html (limited to 'man/v1.2.4/nng_sockaddr_inproc.5.html') diff --git a/man/v1.2.4/nng_sockaddr_inproc.5.html b/man/v1.2.4/nng_sockaddr_inproc.5.html new file mode 100644 index 00000000..2a7433c5 --- /dev/null +++ b/man/v1.2.4/nng_sockaddr_inproc.5.html @@ -0,0 +1,109 @@ +--- +version: v1.2.4 +layout: refman +--- + + + + + + + +nng_sockaddr_inproc(5) + + + + + + +
+
+

SYNOPSIS

+
+
+
+
#include <nng/nng.h>
+
+enum sockaddr_family {
+    NNG_AF_INPROC = 1,
+};
+
+typedef struct {
+    uint16_t sa_family;
+    uint16_t sa_name[128];
+} nng_sockaddr_inproc;
+
+
+
+
+
+

DESCRIPTION

+
+
+

+An nng_sockaddr_inproc is the flavor of nng_sockaddr +used to represent addresses associated with intra-process communication +using the inproc transport.

+
+
+

The following structure members are present:

+
+
+
+
sa_family
+
+

This field will always have the value NNG_AF_INPROC.

+
+
sa_name
+
+

This field holds an arbitrary C string, which is the “name” of +the address. +The string must be NUL terminated, but no other restrictions exist.

+
+
+
+
+ + + + + +
+ + +In order to ensure maximum compatibility, applications should avoid +hard coding the size of the sa_name member explicitly, but use the +sizeof operator to determine its actual size at compile time. +Furthermore, the size is guaranteed to be at least 128. +
+
+
+
+
+

SEE ALSO

+ +
+
+ + + \ No newline at end of file -- cgit v1.2.3-70-g09d2