]> git.proxmox.com Git - ceph.git/blame - ceph/src/civetweb/docs/api/mg_init_library.md
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / docs / api / mg_init_library.md
CommitLineData
11fdf7f2
TL
1# Civetweb API Reference
2
3### `mg_init_library( feature );`
4
5### Parameters
6
7| Parameter | Type | Description |
8| :--- | :--- | :--- |
9|**`feature`**|`unsigned`| A bitmask indicating the features to be ininialized |
10
11### Return Value
12
13| Type | Description |
14| :--- | :--- |
15|`unsigned`| A value indicating the initialized features is available. **0** is returned or error |
16
17### Description
18
19The function `mg_init_library()` should be called from an application program before using any other function.
20It must be called only from one thread (it is not guaranteed to be thread safe).
21
22This function is new in version 1.9 (as dummy implementation) and effective only from version 1.10.
23For compatibility reasons, other functions (such as [`mg_start();`](mg_start.md)) will initialize the required features as well,
24but they will no longer do a de-initialization, leaving a memory leak when the library is unloaded.
25
26The following parameter values can be used:
27
28| Value | Compilation option | Description |
29| :---: | :---: | :--- |
30| **1** | NO_FILES | *Able to serve files*. If this feature is available, the webserver is able to serve files directly from a directory tree. |
31| **2** | NO_SSL | *Support for HTTPS*. If this feature is available, the webserver van use encryption in the client-server connection. SSLv2, SSLv3, TLSv1.0, TLSv1.1 and TLSv1.2 are supported depending on the SSL library CivetWeb has been compiled with, but which protocols are used effectively when the server is running is dependent on the options used when the server is started. |
32| **4** | NO_CGI | *Support for CGI*. If this feature is available, external CGI scripts can be called by the webserver. |
33| **8** | USE_IPV6 | *Support IPv6*. The CivetWeb library is capable of communicating over both IPv4 and IPv6, but IPv6 support is only available if it has been enabled at compile time. |
34| **16** | USE_WEBSOCKET | Support for web sockets. WebSockets support is available in the CivetWeb library if the proper options has been used during cimpile time. |
35| **32** | USE_LUA | *Support for Lua scripts and Lua server pages*. CivetWeb supports server side scripting through the Lua language, if that has been enabled at compile time. Lua is an efficient scripting language which is less resource heavy than for example PHP. |
36| **64** | USE_DUKTAPE | *Support for server side JavaScript*. Server side JavaScript can be used for dynamic page generation if the proper options have been set at compile time. Please note that client side JavaScript execution is always available if it has been enabled in the connecting browser. |
37| **128** | NO_CACHING | *Support for caching*. The webserver will support caching, if it has not been disabled while compiling the library. |
38
39The parameters can added using bitwise or. Values above 255 are reserved, the behavior of the function is undefined if any unknown bit is set.
40
41### See Also
42
43* [`mg_check_feature( feature );`](api/mg_check_feature.md)
44* [`mg_exit_library( feature );`](api/mg_exit_library.md)