Home
last modified time | relevance | path

Searched +full:- +full:- +full:no +full:- +full:check +full:- +full:certificate (Results 1 – 9 of 9) sorted by relevance

/civetweb-2.7.6/docs/
DOpenSSL.md10 ----
12 - Install OpenSSL on your system. There are OpenSSL install packages for all
14 - The default build configuration of the civetweb web server will load the
15 required OpenSSL libraries, if a HTTPS certificate has been configured.
19 ----
33 Furthermore the SSL certificate file must be set:
35 ssl_certificate d:\civetweb\certificate\server.pem
39 Creating a self signed certificate
40 ----
43 certificate file required by civetweb (server.pem).
[all …]
DUserManual.md5 It may be embedded into C/C++ host applications or used as a stand-alone
9 The stand-alone server is self-contained, and does not require any external
11 [Visual C++ Redistributable](http://www.microsoft.com/en-us/download/details.aspx?id=30679).
15 ----
17 On Windows, UNIX and Mac, the CivetWeb stand-alone executable may be started
24 Pressing `Ctrl-C` keys will stop the server.
27 Right-clicking on the icon pops up a menu, where it is possible to stop
33 to this folder, double-click the exe, and launch a browser at
54 All command line arguments must start with `-`.
57 `CivetWeb -document_root D:\web`. Then the `D:\web` directory will be served
[all …]
/civetweb-2.7.6/
DRELEASE_NOTES.md6 -------
8 - Support for flawed CGI interpreters returning only <LF> instead of <CR><LF>
9 - Add NO_FILESYSTEM flag for (embedded) system without any file system
10 - Several fixes for server side Lua scripts
11 - Disable SSL renegotiation for new OpenSSL version
12 - Allow to force TLSv1.3 (disable TLSv1.2)
13 - Prefer pre-compressed *.gz file, if it already exists
14 - Fix some #include statements for various compilers / OS / SDK versions
15 - Support for Linux Standard Base (LSB)
16 - Fixes to mg_get_*_info() API functions
[all …]
D.travis.yml10 - $HOME/third-party
17 - cmake
18 - openssl
19 - libssl-dev
21 - kubuntu-backports
25 - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
28 wget https://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.sh --no-check-certificate;
29 chmod +x cmake-3.7.2-Linux-x86_64.sh;
30 ./cmake-3.7.2-Linux-x86_64.sh --prefix=$HOME/usr --exclude-subdir --skip-license;
32 - cmake --version
[all …]
/civetweb-2.7.6/docs/api/
Dmg_callbacks.md8 | :--- | :--- |
10 …equest()` is called before any authorization is done. If an authorization check is required, `requ…
12-context mutex is locked when the callback function is invoked. The function is primarily useful f…
18 …eturn 1 to signal CivetWeb that no further processing is needed. If the returned value is 0, Civet…
24 … setup and no further processing is necessary. Also with a return value of 1 another callback func…
26certificate. With a return value of 1 the callback function signals CivetWeb that the certificate
29 | |**0** - The master thread is created |
30 | |**1** - A worker thread which handles client connections has been created|
31 | |**2** - An internal helper thread (timer thread) has been created|
36 …nes to log the access. If a non-zero value is returned, CivetWeb assumes that access logging has a…
[all …]
/civetweb-2.7.6/include/
Dcivetweb.h1 /* Copyright (c) 2013-2018 the Civetweb developers
2 * Copyright (c) 2004-2013 Sergey Lyubka
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
97 /* Support on-the-fly compression. */
124 /* Un-initialize this library.
147 const char *request_uri; /* URL-decoded URI (absolute or relative,
149 const char *local_uri; /* URL-decoded URI (relative). Can be NULL
152 #if defined(MG_LEGACY_INTERFACE) /* 2017-02-04, deprecated 2014-09-14 */
158 const char *remote_user; /* Authenticated user, or NULL if no auth
163 can be -1 if no length was given. */
[all …]
/civetweb-2.7.6/src/
Dcivetweb.c1 /* Copyright (c) 2013-2018 the Civetweb developers
2 * Copyright (c) 2004-2013 Sergey Lyubka
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33 /* Disable unused macros warnings - not all defines are required
35 #pragma GCC diagnostic ignored "-Wunused-macros"
37 #pragma GCC diagnostic ignored "-Wpadded"
45 #pragma GCC diagnostic ignored "-Wreserved-id-macro"
52 #if !defined(_WIN32_WINNT) /* defined for tdm-gcc so we can use getnameinfo */
70 #define _FILE_OFFSET_BITS 64 /* Use 64-bit file offsets by default */
88 /* Enable reserved-id-macro warning again. */
[all …]
Dmod_lua.inl19 * No one should expect a full mmap for Windows here.
81 lua_rawset(L, -3);
95 lua_rawset(L, -3);
108 lua_rawset(L, -3);
118 lua_rawset(L, -3);
132 lua_rawset(L, -3);
142 lua_rawset(L, -3);
164 lua_tostring(L, -1));
171 lua_tostring(L, -1));
190 lua_tostring(L, -1));
[all …]
/civetweb-2.7.6/unittest/
Dpublic_server.c1 /* Copyright (c) 2015-2018 the Civetweb developers
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
53 /* This unit test file uses the excellent Check unit testing library.
55 * http://check.sourceforge.net/doc/check_html/index.html
62 #pragma GCC diagnostic ignored "-Wunused-result"
135 #pragma GCC diagnostic ignored "-Wunreachable-code" in wait_not_null()
136 #pragma GCC diagnostic ignored "-Wunreachable-code-return" in wait_not_null()
164 wd[sizeof(wd) - 1] = 0; in START_TEST()
167 wd[sizeof(wd) - 1] = 0; in START_TEST()
170 /* Check the pem file */ in START_TEST()
[all …]