table of contents
NNG_SETOPT(3) | NNG Reference Manual | NNG_SETOPT(3) |
NAME¶
nng_setopt - set socket option
SYNOPSIS¶
#include <nng/nng.h> int nng_setopt(nng_socket s, const char *opt, const void *val, size_t valsz); int nng_setopt_bool(nng_socket s, const char *opt, bool bval); int nng_setopt_int(nng_socket s, const char *opt, int ival); int nng_setopt_ms(nng_socket s, const char *opt, nng_duration dur); int nng_setopt_ptr(nng_socket s, const char *opt, void *ptr); int nng_setopt_size(nng_socket s, const char *opt, size_t z); int nng_setopt_string(nng_socket s, const char *opt, const char *str); int nng_setopt_uint64(nng_socket s, const char *opt, uint64_t u64);
DESCRIPTION¶
Important
These functions are deprecated. Please see nng_socket_set.
They may not be present if the library was built with
NNG_ELIDE_DEPRECATED.
The nng_setopt() functions are used to configure options for the socket s. The actual options that may be configured in this way vary, and are specified by opt. A number of them are documented in nng_options(5).
Additionally some transport-specific and protocol-specific options are documented with the transports and protocols themselves.
Forms¶
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_setopt()
Tip
It may be easier to use one of the typed forms of this function.
nng_setopt_bool()
nng_setopt_int()
nng_setopt_ms()
nng_setopt_ptr()
Note
This form is somewhat special in that the object is generally
not copied, but instead the pointer to the object is copied.
nng_setopt_size()
nng_setopt_string()
nng_setopt_uint64()
RETURN VALUES¶
These functions return 0 on success, and non-zero otherwise.
ERRORS¶
NNG_ECLOSED
NNG_EINVAL
NNG_ENOTSUP
NNG_EREADONLY
NNG_ESTATE
SEE ALSO¶
nng_getopt(3), nng_dialer_setopt(3), nng_listener_setopt(3), nng_strerror(3), nng_options(5), nng_socket(5), nng(7)
2024-10-11 |