Home
last modified time | relevance | path

Searched full:all (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/civetweb-2.7.6/docs/
DUserManual.md54 All command line arguments must start with `-`.
63 but their names are the same as in the config file. All option names are
100 All other characters in the pattern match themselves. Examples:
152 all accesses. On each request the full list is traversed, and
155 -0.0.0.0/0,+192.168/16 deny all accesses, only allow 192.168/16 subnet
171 This option can be specified multiple times. All specified header lines will be sent.
236 If all CGIs use the same interpreter, for example they are all PHP, it is
242 All files that match `cgi_pattern` are treated as CGI files. The default pattern
309 (e.g., 4xx - all client errors) or all errors. The corresponding error pages
323 and all requests are authorized against that file.
[all …]
DEmbedding.md23 but all functions required to run a HTTP server.
41 …tures available in the C interface are missing in the C++ interface. While all features should be …
73 Not all CivetWeb features available in C are also available in C++.
171 web server context (`struct mg_context`), which holds all information
182 When `mg_start()` returns, all initialization is guaranteed to be complete
197 If all worker threads are busy, master thread can accept and queue up to
230 All accepted sockets have `SO_RCVTIMEO` and `SO_SNDTIMEO` socket options set
DContribution.md4 Contributions to CivetWeb are welcome, provided all contributions carry the MIT license.
7 …matically when you create a pull request, but it may take some hours until all tests are completed…
28 I'm asking for this, because I usually review all pull requests.
32 … is a much more effective way to reach the same goal. Finally it will help all other users, since …
/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlstate.h19 ** Some notes about garbage-collected objects: All objects in Lua must
20 ** be kept somehow accessible until being freed, so all objects always
24 ** 'allgc': all objects not marked for finalization;
25 ** 'finobj': all objects marked for finalization;
26 ** 'tobefnz': all objects ready to be finalized;
27 ** 'fixedgc': all objects that are not to be collected (currently
31 ** These lists are linked by fields 'gclist'. (All objects that
33 ** in all objects, but it always has this name.) Any gray object
34 ** must belong to one of these lists, and all objects in these lists
41 ** - all kinds of weak tables during propagation phase;
[all …]
DMakefile52 all: $(ALL_T) target
85 ALL= all macro
92 …$(MAKE) $(ALL) CC="xlc" CFLAGS="-O2 -DLUA_USE_POSIX -DLUA_USE_DLOPEN" SYSLIBS="-ldl" SYSLDFLAGS="-…
95 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN" SYSLIBS="-Wl,-E"
98 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_C89" CC="gcc -std=c89"
105 …$(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX -DLUA_USE_READLINE -I/usr/include/edit" SYSLIBS="-Wl,-E …
107 generic: $(ALL)
110 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl -lreadline"
113 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_MACOSX" SYSLIBS="-lreadline"
122 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_POSIX"
[all …]
Dlgc.c63 ** 'makewhite' erases all color bits then sets only the current white
181 ** shared among closures, it is impossible to know the color of all
297 ** mark all objects in list of being-finalized
307 ** Mark all values stored in marked open upvalues from non-marked threads.
335 ** mark root set and reset all gray lists, to start a new collection
464 else /* all weak */ in traversetable()
619 changed = 1; /* will have to revisit all ephemeron tables */ in convergeephemerons()
636 ** clear entries with unmarked keys from all weaktables in list 'l' up
655 ** clear entries with unmarked values from all weaktables in list 'l' up
731 ** white; change all non-dead objects back to white, preparing for next
[all …]
Dluaconf.h17 ** Search for "@@" to find all configurable definitions.
33 ** ensure that all software connected to Lua will be compiled with the
236 @@ LUA_API is a mark for all core API functions.
237 @@ LUALIB_API is a mark for all auxiliary library functions.
238 @@ LUAMOD_API is a mark for all standard library opening functions.
265 @@ LUAI_FUNC is a mark for all extern functions that are not to be
267 @@ LUAI_DDEF and LUAI_DDEC are marks for all extern (const) variables
272 ** when Lua is compiled as a shared library. Not all elf targets support
300 ** You can define it to get all options, or change specific options
426 @@ l_mathop allows the addition of an 'l' or 'f' to all math operations.
[all …]
/civetweb-2.7.6/src/third_party/lua-5.1.5/src/
DMakefile44 all: $(ALL_T) target
51 $(AR) $@ $(CORE_O) $(LIB_O) # DLL needs all object files
84 …$(MAKE) all CC="xlc" CFLAGS="-O2 -DLUA_USE_POSIX -DLUA_USE_DLOPEN" MYLIBS="-ldl" MYLDFLAGS="-brtl …
87 $(MAKE) all MYCFLAGS=-DLUA_ANSI
90 $(MAKE) all MYCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN" MYLIBS="-Wl,-E"
93 $(MAKE) all MYCFLAGS="-DLUA_USE_LINUX" MYLIBS="-Wl,-E -lreadline"
96 $(MAKE) all MYCFLAGS=
99 $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-Wl,-E -ldl -lreadline -lhistory -lncurses"
102 $(MAKE) all MYCFLAGS=-DLUA_USE_LINUX MYLIBS="-lreadline"
104 # $(MAKE) all MYCFLAGS=-DLUA_USE_MACOSX
[all …]
Dlstate.c107 luaF_close(L, L->stack); /* close all upvalues for this thread */ in close_state()
108 luaC_freeall(L); /* collect all objects */ in close_state()
135 luaF_close(L1, L1->stack); /* close all upvalues for this thread */ in luaE_freethread()
195 luaC_callGCTM(L); /* call GC metamethods for all udata */ in callallgcTM()
202 luaF_close(L, L->stack); /* close all upvalues for this thread */ in lua_close()
/civetweb-2.7.6/src/third_party/lua-5.2.4/src/
DMakefile52 all: $(ALL_T) target
85 ALL= all macro
92 …$(MAKE) $(ALL) CC="xlc" CFLAGS="-O2 -DLUA_USE_POSIX -DLUA_USE_DLOPEN" SYSLIBS="-ldl" SYSLDFLAGS="-…
95 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_ANSI"
98 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_POSIX -DLUA_USE_DLOPEN" SYSLIBS="-Wl,-E"
101 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -lreadline"
103 generic: $(ALL)
106 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl -lreadline"
109 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_MACOSX" SYSLIBS="-lreadline" CC=cc
118 $(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_POSIX"
[all …]
Dlgc.c55 ** 'makewhite' erases all color bits plus the old bit and then
169 ** it again. Otherwise, use a backward barrier, to avoid marking all
309 ** mark all objects in list of being-finalized
321 ** mark all values stored in marked open upvalues. (See comment in
334 ** mark root set and reset all gray lists, to start a new
447 else /* all weak */ in traversetable()
574 propagateall(g); /* traverse all elements from 'l' */ in propagatelist()
578 ** retraverse all gray lists. Because tables may be reinserted in other
605 changed = 1; /* will have to revisit all ephemeron tables */ in convergeephemerons()
622 ** clear entries with unmarked keys from all weaktables in list 'l' up
[all …]
Dluaconf.h17 ** Search for "@@" to find all configurable definitions.
64 @@ LUA_USE_POSIX includes all functionality listed as X/Open System
135 @@ LUA_API is a mark for all core API functions.
136 @@ LUALIB_API is a mark for all auxiliary library functions.
137 @@ LUAMOD_API is a mark for all standard library opening functions.
164 @@ LUAI_FUNC is a mark for all extern functions that are not to be
166 @@ LUAI_DDEF and LUAI_DDEC are marks for all extern (const) variables
171 ** when Lua is compiled as a shared library. Not all elf targets support
243 @@ LUA_COMPAT_ALL controls all compatibility options.
244 ** You can define it to get all options, or change specific options
[all …]
Dlstate.h19 ** Some notes about garbage-collected objects: All objects in Lua must
29 ** double-linked list with all open upvalues (g->uvhead) so that it can
37 ** The list g->tobefnz links all objects being finalized.
110 ** `global state', shared by all threads of this state
127 GCObject *allgc; /* list of all collectable objects */
135 GCObject *allweak; /* list of all-weak tables */
137 UpVal uvhead; /* head of double-linked list of all open upvalues */
183 ** Union of all collectable objects
/civetweb-2.7.6/test/
DMakefileTest.mk13 all: test
31 $(MAKE) -C $(TOP)/examples/embedded_c clean all
34 $(MAKE) -C $(TOP)/examples/embedded_cpp clean all
37 $(MAKE) -C $(TOP)/examples/chat clean all
40 $(MAKE) -C $(TOP)/examples/hello clean all
43 $(MAKE) -C $(TOP)/examples/post clean all
46 $(MAKE) -C $(TOP)/examples/upload clean all
49 $(MAKE) -C $(TOP)/examples/websocket clean all
88 .PHONY: all buildoptions buildinstall clean os linux
/civetweb-2.7.6/
DLICENSE.md1 ALL LICENSES
5 aspects of the software. Not all licenses may apply depending
12 ### Included with all features.
30 > all copies or substantial portions of the Software.
58 > all copies or substantial portions of the Software.
92 > All rights reserved.
105 > all copies or substantial portions of the Software.
133 > all copies or substantial portions of the Software.
165 > all copies or substantial portions of the Software.
199 > all copies or substantial portions of the Software.
DRELEASE_NOTES.md82 - Convert system\_info text output and all other diagnostic strings to JSON format
180 - CGI-scripts must receive EOF if all POST data is read
181 - Add API function to handle all kinds of HTML form data
248 - Set names for all threads (unless NO_THREAD_NAME is defined)
285 - Redirect all memory allocation/deallocation through mg functions which may be overwritten (bel)
292 - Add all functions to dll.def, that are in the header (bel)
346 The main idea behind this release is to bring about API consistency. All changes
421 - Updated License file to include all licenses.
/civetweb-2.7.6/src/third_party/lua-5.1.5/doc/
Dmanual.html255 All values carry their own type.
259 All values in Lua are <em>first-class values</em>.
260 This means that all values can be stored in variables,
311 Lua supports coroutines on all systems,
320 that is, they can contain values of all types (except <b>nil</b>).
431 All global variables live as fields in ordinary Lua tables,
435 so that all global variables in this function
568 then all values returned by that call enter the list of values,
574 The assignment statement first evaluates all its expressions
647 All values different from <b>nil</b> and <b>false</b> are considered true
[all …]
/civetweb-2.7.6/src/third_party/lua-5.2.4/doc/
Dmanual.html102 All values carry their own type.
106 All values in Lua are <em>first-class values</em>.
107 This means that all values can be stored in variables,
164 Lua supports coroutines on all systems,
175 that is, they can contain values of all types (except <b>nil</b>).
194 the set of all positive numeric keys is equal to <em>{1..n}</em>
272 Moreover, all standard libraries are loaded in the global environment
283 all chunks loaded after the change will get the new environment.
298 all Lua actions start from C&nbsp;code in the host program
380 Values of all other types share one single metatable per type;
[all …]
/civetweb-2.7.6/examples/_obsolete/chat/
Dchat.c89 char buf[sizeof(messages)]; // Large enough to hold all messages in messages_to_json()
91 // Read-lock the ringbuffer. Loop over all messages, making a JSON string. in messages_to_json()
95 // If client is too far behind, return all messages. in messages_to_json()
104 // buf is allocated on stack and hopefully is large enough to hold all in messages_to_json()
105 // messages (it may be too small if the ringbuffer is full and all in messages_to_json()
190 // TODO(lsm): JSON-encode all text strings in ajax_send_message()
243 // This is why all communication must be SSL-ed.
284 // The most secure way is to stay HTTPS all the time. However, just to in authorize()
288 // Secure application must use HTTPS all the time. in authorize()
/civetweb-2.7.6/unittest/
Dcivetweb_check.h11 * all copies or substantial portions of the Software.
53 /* All unit tests use the "check" framework.
86 /* A minimal timeout used for all tests with the "check" framework. */
89 /* A minimal timeout for all tests starting a server. */
92 /* A default timeout for all tests running multiple requests to a server. */
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/
Dmanual.html121 All values carry their own type.
125 All values in Lua are <em>first-class values</em>.
126 This means that all values can be stored in variables,
200 Lua supports coroutines on all systems,
211 that is, they can contain values of all types (except <b>nil</b>).
316 Moreover, all standard libraries are loaded in the global environment
331 all Lua actions start from C&nbsp;code in the host program
429 Values of all other types share one single metatable per type;
430 that is, there is one single metatable for all numbers,
431 one for all strings, etc.
[all …]
/civetweb-2.7.6/examples/https/
Dcivetweb.conf14 # 4) set the document root, and all other required http server settings
19 # 6) If you know all your clients, and give them client certificates in
22 # using "ssl_ca_file/path". This will lock out all clients without a
50 # Tell all browsers to access this site only as HTTPS for the next 180 days
80 # (Note: this test is runs with reverse DNS name, while all others use the
/civetweb-2.7.6/src/third_party/
Dsqlite3.h80 ** that we have taken it all out and gone back to using simple
292 ** the [sqlite3] object is successfully destroyed and all associated
306 ** Applications should [sqlite3_finalize | finalize] all [prepared statements],
307 ** [sqlite3_blob_close | close] all [BLOB handles], and
308 ** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated
313 ** of resources is deferred until all [prepared statements], [BLOB handles],
565 ** The SQLITE_IOCAP_ATOMIC property means that all writes of
629 ** xSync VFS method occur and applies uniformly across all platforms.
703 ** core reserves all opcodes less than 100 for its own use.
734 ** The SQLITE_IOCAP_ATOMIC property means that all writes of
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_hthread_builtins.c146 /* Setup builtins from ROM objects. All heaps/threads will share in duk_hthread_create_builtin_objects()
223 * First create all built-in bare objects on the empty valstack. in duk_hthread_create_builtin_objects()
269 /* Currently all built-in native functions are strict. in duk_hthread_create_builtin_objects()
288 /* Almost all global level Function objects are constructable in duk_hthread_create_builtin_objects()
289 * but not all: Function.prototype is a non-constructable, in duk_hthread_create_builtin_objects()
360 DUK_ASSERT(!DUK_HOBJECT_HAS_NATIVEFUNCTION(h) || /* all native functions have NEWENV */ in duk_hthread_create_builtin_objects()
394 /* 'prototype' property for all built-in objects (which have it) has attributes: in duk_hthread_create_builtin_objects()
405 /* 'constructor' property for all built-in objects (which have it) has attributes: in duk_hthread_create_builtin_objects()
424 * few pages); there is a default for all properties and a special in duk_hthread_create_builtin_objects()
590 /* Currently all built-in native functions are strict. in duk_hthread_create_builtin_objects()
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_hthread_builtins.c147 /* Setup builtins from ROM objects. All heaps/threads will share in duk_hthread_create_builtin_objects()
224 * First create all built-in bare objects on the empty valstack. in duk_hthread_create_builtin_objects()
270 /* Currently all built-in native functions are strict. in duk_hthread_create_builtin_objects()
289 /* Almost all global level Function objects are constructable in duk_hthread_create_builtin_objects()
290 * but not all: Function.prototype is a non-constructable, in duk_hthread_create_builtin_objects()
361 DUK_ASSERT(!DUK_HOBJECT_HAS_NATIVEFUNCTION(h) || /* all native functions have NEWENV */ in duk_hthread_create_builtin_objects()
395 /* 'prototype' property for all built-in objects (which have it) has attributes: in duk_hthread_create_builtin_objects()
406 /* 'constructor' property for all built-in objects (which have it) has attributes: in duk_hthread_create_builtin_objects()
425 * few pages); there is a default for all properties and a special in duk_hthread_create_builtin_objects()
591 /* Currently all built-in native functions are strict. in duk_hthread_create_builtin_objects()
[all …]

12345678910>>...16