![]() |
![]() |
![]() |
Libdexter Reference Manual | ![]() |
---|
Configuration File StructureConfiguration File Structure — Organization of the configuration file |
The configuration file is an .ini-style key file. Keys assignments take the form:
key=value
or key=value1;value2;...
, depending on the needs
of the particular key.
This section controls which plugins are loaded; which services are authorized; the size of the threadpool and the behavior of Libdexter channels and servers.
The following keys are mandatory:
LoadPlugins |
|
AuthorizedServices |
|
The following keys are optional:
ServerHost |
|
||||||||||||||
ServerService |
|
||||||||||||||
ServerSocketOptions |
Tab or space-delimited list of the following socket options:
Refer to your network documentation for more information on these options.
Some may not be available on your platform. Note that Libdexter always uses
options |
||||||||||||||
ServerMaxBacklog |
|
||||||||||||||
ServerMaxClients |
|
||||||||||||||
ServerRecvBufferSize |
|
||||||||||||||
ServerTLSSupportFlag |
|
||||||||||||||
ServerTLSClientCertFlag |
|
||||||||||||||
ServerTLSCertFile |
|
||||||||||||||
ServerTLSKeyFile |
|
||||||||||||||
ServerTLSTrustFile |
|
||||||||||||||
ServerTLSCrlFile |
|
||||||||||||||
ServerTLSVerifyHostname |
|
||||||||||||||
ChannelHost |
|
||||||||||||||
ChannelService |
|
||||||||||||||
ChannelSocketOptions |
The same socket options as listed above for ServerSocketOptions are available. |
||||||||||||||
ChannelRecvBufferSize |
|
||||||||||||||
ChannelTimeoutMsecs |
|
||||||||||||||
ChannelTLSCertFile |
|
||||||||||||||
ChannelTLSKeyFile |
|
||||||||||||||
ChannelTLSTrustFile |
|
||||||||||||||
ChannelTLSCrlFile |
|
||||||||||||||
ChannelTLSVerifyHostname |
|
||||||||||||||
ThreadPoolNumThreads |
|
||||||||||||||
ThreadPoolExitWait |
|
This section contains specifiers of the form: key=/full/path/to/plugin
,
one for each plugin that you may wish to load with LoadPlugins=key1;key2;...
in section [Main]. The full path to the plugin must be used. Libdexter will
not load plugins on relative paths. The shared library suffix for your
platform (e.g. .so) may be omitted.
This section contains specifiers of the form: key=uuid
, one for each
service you wish to authorize for use in your application with
AuthorizedServices=key1;key2;...
in section [Main]. The uuid's must be
specified using the 36-byte string form, e.g.
9e50a183-2269-4dd8-9d79-ab3b52de368c
.
Each uuid-specified service has its own section in the configuration file, if required. This section is reserved for service-specific settings and/or keys that the plugin may require to initialize itself on your platform. This is distinguished from the instance initialization that users perform, e.g. on samplers, with dexter_sampler_initialize().