Lines Matching full:configuration

142 \&\- OpenSSL configuration functions
159 configuration file pathname as follows.
167 If \fBfilename\fR is \s-1NULL\s0 the standard OpenSSL configuration file is used
178 reads configuration information from \fBcnf\fR.
184 configuration modules are ignored. If not set the first module error is
193 the default system-wide configuration file, as having all OpenSSL applications
198 If \fB\s-1CONF_MFLAGS_NO_DSO\s0\fR is set configuration module loading from DSOs is
202 ignore missing configuration files. Normally a missing configuration file
209 application can customise application configuration to best suit its needs.
210 In some cases the use of a configuration file is optional and its absence is not
213 Errors during configuration may also be handled differently by different
216 consider a configuration file error as fatal and exit immediately.
219 configuration file themselves and have finer control over how errors are
228 Load a configuration file and print out any errors and exit (missing file
233 \& fprintf(stderr, "FATAL: error loading configuration file\en");
239 Load default configuration file using the section indicated by \*(L"myapp\*(R",
245 \& fprintf(stderr, "FATAL: error loading configuration file\en");
251 Load custom configuration file and section, only print warnings on error,
252 missing configuration file ignored:
257 \& fprintf(stderr, "WARNING: error loading configuration file\en");
262 Load and parse configuration file manually, custom error handling:
271 \& fprintf(stderr, "Error opening configuration file\en");
272 \& /* Other missing configuration file behaviour */
276 \& fprintf(stderr, "Error on line %ld of configuration file\en", eline);
278 \& /* Other malformed configuration file behaviour */
282 \& /* Other configuration error behaviour */