ytls_set_trace()

ytls_set_trace()#

Enables or disables tracing for the given secure socket sskt in the TLS context ytls.

Prototype

void ytls_set_trace(
    hytls  ytls,
    hsskt  sskt,
    BOOL   set
);

Parameters

Key

Type

Description

ytls

hytls

The TLS context.

sskt

hsskt

The secure socket for which tracing is to be set.

set

BOOL

If TRUE, enables tracing; if FALSE, disables tracing.


Return Value

This function does not return a value.

Notes

Tracing provides verbose output for debugging purposes. It should be used with caution in production environments.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples