#include <nng/supplemental/tls/tls.h>
typedef struct nng_tls_config nng_tls_config;
This documentation is for the TIP (development tree) of NNG and may represent unreleased changes or functionality that is experimental, and is subject to change before release. The latest released version is v1.8.0. See the documentation for v1.8.0 for the most up-to-date information. |
nng_tls_config(5)
NAME
nng_tls_config - TLS configuration object
SYNOPSIS
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.