pub unsafe extern "C" fn dxf_load_config_from_string(
    config: *const c_char
) -> ERRORCODE
Expand description

@ingroup c-api-config

@brief Initializes the C-API configuration and loads a config (in TOML format) from a string For the successful application of the configuration, this function must be called before creating any connection

@details The config file sample: Sample

The TOML format specification: https://toml.io/en/v1.0.0-rc.2

Example #1:

dxf_load_config_from_string(
    "network.heartbeatPeriod = 10\n"
    "network.heartbeatTimeout = 120\n"
    "logger.level = \"info\"\n"
);

Example #2:

dxf_load_config_from_string(
    "[network]\n"
    "heartbeatPeriod = 10\n"
    "heartbeatTimeout = 120\n"
    "[logger]\n"
    "level = \"info\"\n"
);

@param[in] config The config (in TOML format) string

@return {@link DXF_SUCCESS} if configuration has been successfully loaded or {@link DXF_FAILURE} on error; {@link dxf_get_last_error} can be used to retrieve the error code and description in case of failure