Lines Matching refs:configuration
7 - OpenSSL configuration functions
24 configuration file pathname as follows.
32 If B<filename> is NULL the standard OpenSSL configuration file is used
43 reads configuration information from B<cnf>.
50 configuration modules are ignored. If not set the first module error is
59 the default system-wide configuration file, as having all OpenSSL applications
64 If B<CONF_MFLAGS_NO_DSO> is set configuration module loading from DSOs is
68 ignore missing configuration files. Normally a missing configuration file
75 application can customise application configuration to best suit its needs.
76 In some cases the use of a configuration file is optional and its absence is not
79 Errors during configuration may also be handled differently by different
82 consider a configuration file error as fatal and exit immediately.
85 configuration file themselves and have finer control over how errors are
96 Load a configuration file and print out any errors and exit (missing file
100 fprintf(stderr, "FATAL: error loading configuration file\n");
105 Load default configuration file using the section indicated by "myapp",
110 fprintf(stderr, "FATAL: error loading configuration file\n");
115 Load custom configuration file and section, only print warnings on error,
116 missing configuration file ignored:
120 fprintf(stderr, "WARNING: error loading configuration file\n");
124 Load and parse configuration file manually, custom error handling:
132 fprintf(stderr, "Error opening configuration file\n");
133 /* Other missing configuration file behaviour */
137 fprintf(stderr, "Error on line %ld of configuration file\n", eline);
139 /* Other malformed configuration file behaviour */
143 /* Other configuration error behaviour */