Searched refs:on (Results 1 – 25 of 108) sorted by relevance
12345
255 socket.on('connect', function () {261 socket.on('disconnect', function () {265 socket.on('reconnecting', function () {269 socket.on('error', function (err) {273 socket.on('replaced', function () {282 socket.on('keepalive', function (msg) {287 socket.on('basic-info', function (msg) {294 socket.on('exec-status', function (msg) {319 socket.on('output-lines', function (msg) {347 socket.on('callstack', function (msg) {[all …]
557 inputStream.on('data', function (data) {814 inputStream.on('error', function (err) {820 inputStream.on('close', function () {1577 this.inputParser.on('transport-close', function () {1584 this.inputParser.on('transport-error', function (err) {1589 this.inputParser.on('protocol-version', function (msg) {1616 this.inputParser.on('debug-message', function (msg) {1620 this.inputParser.on('stats-update', function () {1628 this.outputParser.on('stats-update', function () {1854 io.on('connection', this.handleNewSocketIoConnection.bind(this));[all …]
10 on Unix and Windows.50 # that on the debug client.72 The debug client automatically attaches to the debug target on startup.86 loop based on LibUV and Duktape with MIT license (like Duktape). As such it's102 - ``./build/dukluv`` on Linux104 - ``.\build\Debug\dukluv.exe`` on Windows147 …2016-02-17T13:59:42.325Z INF Proxy: Listening for incoming JSON debug connection on 0.0.0.0:9093, …241 code running on the target ("duk" command line). **The filenames used on the242 target and on the debug client must match exactly**, because e.g. breakpoints243 are targeted based on the 'fileName' property of Function objects.[all …]
3 depends on BR2_TOOLCHAIN_HAS_THREADS14 depends on BR2_LARGEFILE21 depends on !BR2_LARGEFILE26 depends on !BR2_TOOLCHAIN_HAS_THREADS
5 …ithub.com/civetweb/civetweb/blob/master/docs/Embedding.md) for information on extending an existin…58 Install on the system, Linux only.68 The *slib* option should be done on a separate clean build as position80 Make options can be set on the command line with the make command like so.136 If the output looks good: Just remove the `-n` option to actually install the software on your syst…162 | `USE_ZLIB` | enable on-the-fly compression of files (using zlib) |212 Building on Android215 This is a small guide to help you run civetweb on Android, originally216 tested on the HTC Wildfire.217 Note: You do not need root access to run civetweb on Android.[all …]
18 … this extension for the sake of clarity as opposed to having .c extensions on files that should no…76 - `CivetServer` starts on construction and stops on destruction.95 Several features can be turned "on" or "off" by setting compile defines. CivetWeb builds with a rea…100 …sing a `MG_EXTERNAL_FUNCTION_<internal_function_name>` define. For details on this mechanism, plea…101 …hase. In case you need additional function defines, please create an issue on GitHub explaining yo…187 limit on number of simultaneous requests that can be handled by CivetWeb.200 until there is space in the queue. When the master thread is blocked on a203 which is `SOMAXCONN` and depends on the platform.223 depending on the parsed request.225 Master thread uses `poll()` and `accept()` to accept new connections on[all …]
6 - Please report issues on GitHub. If the issue you want to report is already reported there, add a …7 - If you know how to fix the issue, please create a pull request on GitHub. Please take care your m…18 4. have significant influence on maintenance,20 …please first create an issue on GitHub or create a thread on the CivetWeb discussion group, to dis…
6 server. See `Embedding.md` for information on embedding CivetWeb into27 Right-clicking on the icon pops up a menu, where it is possible to stop32 Thus, the easiest way to share a folder on Windows is to copy `CivetWeb.exe`62 Note that configuration options on the command line must start with `-`,98 | Matches if pattern on the left side or the right side matches.118 See the [Wikipedia page on CORS](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing).129 See the [Wikipedia page on CORS](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing).141 See the [Wikipedia page on CORS](http://en.wikipedia.org/wiki/Cross-origin_resource_sharing).144 An Access Control List (ACL) allows restrictions to be put on the list of IP158 [Wikipedia page on Subnetwork](http://en.wikipedia.org/wiki/Subnetwork).[all …]
52 Trouble tickets should be filed on GitHub58 Source releases can be found on GitHub61 A very brief overview can be found on GitHub Pages81 …hub.com/civetweb/civetweb/tree/master/docs/api) - Additional documentation on the civetweb applica…100 - Works on Windows, Mac, Linux, UNIX, iPhone, Android, Buildroot, and many110 - Download speed limit based on client subnet or URI pattern.139 More information may be found on the [mailing list](https://groups.google.com/d/forum/civetweb).158 CivetWeb is based on the Mongoose project. The original author of Mongoose was162 after writing and distributing the original code this project is based on.163 The license change and CivetWeb used to be mentioned on the Mongoose[all …]
30 #define luaM_reallocv(L,b,on,n,e) \ argument33 luaM_realloc_(L, (b), (on)*(e), (n)*(e)))38 #define luaM_reallocvchar(L,b,on,n) \ argument39 cast(char *, luaM_realloc_(L, (b), (on)*sizeof(char), (n)*sizeof(char)))
9 |**`conn`**|`const struct mg_connection *`|The connection on which a problem occurred|11 |**`...`**|*various*|Parameters depending on the format string|19 The function `mg_cry()` is called when something happens on a connection. The function takes a form…
19 …on a Windows system where both PHP and Perl CGI scripts are used, `#!/path/to/php-cgi.exe` and `#!…32 …on the designated ports. In case of failure a NULL pointer is returned. The behaviour of the web …34 As a side effect on Unix systems, SIGCHLD and SIGPIPE signals will be ignored. If custom processing…
34 int on; in duk_trans_socket_init() local44 on = 1; in duk_trans_socket_init()45 if (setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, (const char *) &on, sizeof(on)) < 0) { in duk_trans_socket_init()
17 a built-in debugger protocol, function bytecode dump/load, and so on.76 and other standard timer functions could be implemented on Unix/Linux.88 details on Duktape debugger support. Also contains a JSON debug proxy103 based on the algorithm from Lua (MIT license), djb2 hash, and Murmurhash2104 (MIT license). Duktape module loader is based on the CommonJS module
8 A few examples on how an event loop can be implemented with Duktape, mainly52 This is **not** a production quality event loop. This is on purpose, to67 * The example uses poll() while one should use epoll() on Linux, kqueue()68 on BSD systems, etc.
12 …p>Note: Some of the tests below will only work on Windows, others only on Linux, and some probably…
3 Travis is a service which will build your project when you commit or get pull requests on Github.5 I have fixed and extended the travis configuration to build on the new sudo-less docker infrastruct…20 * reliably starting civetweb server on travis infrastructure
112 /* AmigaOS. Neither AMIGA nor __amigaos__ is defined on VBCC, so user must379 /* Use _setjmp() on Apple by default, see GH-55. */420 /* TOS on M68K is always big endian. */427 /* AmigaOS on M68k */448 /* AmigaOS on M68K or PPC is always big endian. */662 /* Rely on C89 headers only; time.h must be here. */744 /* Byte order varies, so rely on autodetect. */753 /* Byte order varies, so rely on autodetect. */762 /* MIPS byte order varies so rely on autodetection. */763 /* Based on 'make checkalign' there are no alignment requirements on[all …]