Make the s_server command listen on IPv6 only when requested
[openssl.git] / doc / man3 / OPENSSL_load_builtin_modules.pod
1 =pod
2
3 =head1 NAME
4
5 OPENSSL_load_builtin_modules, ASN1_add_oid_module, ENGINE_add_conf_module - add standard configuration modules
6
7 =head1 SYNOPSIS
8
9  #include <openssl/conf.h>
10
11  void OPENSSL_load_builtin_modules(void);
12  void ASN1_add_oid_module(void);
13  void ENGINE_add_conf_module(void);
14
15 =head1 DESCRIPTION
16
17 The function OPENSSL_load_builtin_modules() adds all the standard OpenSSL
18 configuration modules to the internal list. They can then be used by the
19 OpenSSL configuration code.
20
21 ASN1_add_oid_module() adds just the ASN1 OBJECT module.
22
23 ENGINE_add_conf_module() adds just the ENGINE configuration module.
24
25 =head1 NOTES
26
27 If the simple configuration function OPENSSL_config() is called then
28 OPENSSL_load_builtin_modules() is called automatically.
29
30 Applications which use the configuration functions directly will need to
31 call OPENSSL_load_builtin_modules() themselves I<before> any other
32 configuration code.
33
34 Applications should call OPENSSL_load_builtin_modules() to load all
35 configuration modules instead of adding modules selectively: otherwise
36 functionality may be missing from the application if an when new
37 modules are added.
38
39 =head1 RETURN VALUES
40
41 None of the functions return a value.
42
43 =head1 SEE ALSO
44
45 L<config(5)>, L<OPENSSL_config(3)>
46
47 =head1 COPYRIGHT
48
49 Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.
50
51 Licensed under the OpenSSL license (the "License").  You may not use
52 this file except in compliance with the License.  You can obtain a copy
53 in the file LICENSE in the source distribution or at
54 L<https://www.openssl.org/source/license.html>.
55
56 =cut