logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

nng_tls_config - TLS configuration object

Description

An nng_tls_config represents a single TLS configuration object, which can be used to configure TLS servers and clients. Configuration data includes details such as certificate chains used for validation of remote peers, local key and certificate material, server names, and so forth. Additionally, a configuration can be used either in client mode, or in server mode. Configuration objects may be shared, and are reference counted. However once a configuration is used, it enters a read-only state that precludes further modifications to the configuration. Messages are allocated using the nng_tls_config_alloc() function, and are deallocated using the nng_tls_config_free() function.

Name

nng_tls_config - TLS configuration object

See Also

nng_tls_config_alloc(3tls), nng_tls_config_auth_mode(3tls), nng_tls_config_ca_chain(3tls), nng_tls_config_own_cert(3tls), nng_tls_config_free(3tls), nng_tls_config_hold(3tls), nng_tls_config_server_name(3tls), nng(7) 2025-04-20 NNG_TLS_CONFIG(5)

Synopsis

#include <nng/supplemental/tls/tls.h> typedef struct nng_tls_config nng_tls_config;

See Also