nng_stream_get(3str)
| NNG_STREAM_GET(3str) | NNG Reference Manual | NNG_STREAM_GET(3str) |
NAME
nng_stream_get - get option from byte stream
SYNOPSIS
#include <nng/nng.h> int nng_stream_get(nng_stream *s, const char *opt, void *val, size_t *sizep); int nng_stream_get_bool(nng_stream *s, const char *opt, bool *valp); int nng_stream_get_int(nng_stream *s, const char *opt, int *valp); int nng_stream_get_ms(nng_stream *s, const char *opt, nng_duration *valp); int nng_stream_get_ptr(nng_stream *s, const char *opt, void **valp); int nng_stream_get_size(nng_stream *s, const char *opt, size_t *valp); int nng_stream_get_addr(nng_stream *s, const char *opt, nng_sockaddr *valp); int nng_stream_get_string(nng_stream *s, const char *opt, char **valp); int nng_stream_get_uint64(nng_stream *s, const char *opt, uint64_t *valp);
DESCRIPTION
The nng_stream_get() functions are used to retrieve option values for the byte stream conn.
The actual options that may be retrieved in this way vary. A number of them are documented in nng_options(5) and additional linked documents.
Forms
In all of these forms, the option opt is retrieved from the connected byte stream s. The forms vary based on the type of the option they take.
The details of the type, size, and semantics of the option will depend on the actual option, and will be documented with the option itself.
nng_stream_get()
When the function returns, the actual size of the data copied (or that would have been copied if sufficient space were present) is stored at the location referenced by sizep. If the caller’s buffer is not large enough to hold the entire object, then the copy is truncated. Therefore the caller should check for truncation by verifying that the returned size in sizep does not exceed the original buffer size.
It is acceptable to pass NULL for val if the value in sizep is zero. This can be used to determine the size of the buffer needed to receive the object.
Tip
It may be easier to use one of the typed forms of this function.
nng_stream_get_bool()
nng_stream_get_int()
nng_stream_get_ms()
nng_stream_get_ptr()
Note
Care must be taken to ensure that the application respects any
considerations about the lifetime of the underyling object. See the
documentation for the option for more specific guidance.
nng_stream_get_size()
nng_stream_get_addr()
nng_stream_get_string()
nng_stream_get_uint64()
RETURN VALUES
This function returns 0 on success, and non-zero otherwise.
ERRORS
NNG_ECLOSED
NNG_EINVAL
NNG_ENOTSUP
NNG_EWRITEONLY
SEE ALSO
nng_strerror(3), nng_stream_set(3str), nng_options(5), nng_ipc_options(5), nng_tcp_options(5), nng_tls_options(5), nng_stream(5)
| 2026-06-29 |
