/civetweb-2.7.6/test/ |
D | linux_stderr.cgi | 8 for ((number=1;number < 5000;number++)) 10 echo "Write $number to stdout" 11 echo "Write $number to stderr" 1>&2
|
/civetweb-2.7.6/examples/rest/cJSON/ |
D | cJSON.h | 254 …JSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const double number); 261 #define cJSON_SetIntValue(object, number) ((object) ? (object)->valueint = (object)->valuedouble = … argument 263 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number); 264 …efine cJSON_SetNumberValue(object, number) ((object != NULL) ? cJSON_SetNumberHelper(object, (doub… argument
|
D | cJSON.c | 269 double number = 0; in parse_number() local 315 number = strtod((const char*)number_c_string, (char**)&after_end); in parse_number() 321 item->valuedouble = number; in parse_number() 324 if (number >= INT_MAX) in parse_number() 328 else if (number <= INT_MIN) in parse_number() 334 item->valueint = (int)number; in parse_number() 344 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper() argument 346 if (number >= INT_MAX) in cJSON_SetNumberHelper() 350 else if (number <= INT_MIN) in cJSON_SetNumberHelper() 356 object->valueint = (int)number; in cJSON_SetNumberHelper() [all …]
|
/civetweb-2.7.6/docs/api/ |
D | mg_get_ports.md | 10 |**`size`**|`size_t`|The number of ports which can be stored in the buffer| 18 |`size_t`|The number of ports stored in the buffer| 26 The function returns the number of ports actually stored in the buffer.
|
D | mg_read.md | 11 |**`len`**|`size_t`| The maximum number of bytes to be stored in the buffer | 17 |`int`| The number of read bytes, or a status indication | 21 …whose address has been provided as a parameter. The function returns the number of read bytes when…
|
D | mg_request_info.md | 19 |**`remote_port`**|`int`| The port number at the client's side (an integer number between 1 and 655… 23 |**`num_headers`**|`int`| The number of HTTP request headers sent by the client (see http_headers) | 24 … of structures with the HTTP request headers sent by the client. For the number of filled header f…
|
D | mg_strncasecmp.md | 11 |**`len`**|`size_t`|The maximum number of characters to compare| 21 …mpare two strings. The comparison is case insensitive and only a limited number of characters are …
|
D | mg_get_server_ports.md | 17 |`int`|The actual number of ports returned, or an error condition| 23 The function returns the number of items in the list, or a negative value if an error occurred.
|
D | mg_handle_form_request.md | 16 |`int`|The number of fields processed, or an error code| 20 … [`struct mg_form_data_handler`](mg_form_data_handler.md) structure. The number of processed field…
|
D | mg_response_info.md | 26 |**`num_headers`**|`int`| The number of HTTP request headers sent by the client (see http_headers) | 27 … of structures with the HTTP request headers sent by the client. For the number of filled header f…
|
D | mg_version.md | 17 …n returns a pointer to a string with the current major and minor version number separated with a d…
|
D | mg_client_cert.md | 11 |**`serial`**|`const char *`| The serial number of the certificate |
|
D | mg_store_body.md | 20 …the body of an incoming request to a data file. The function returns the number of bytes stored in…
|
D | mg_url_encode.md | 17 |`int`|The number of characters written in the destination buffer|
|
D | mg_server_port.md | 10 |**`port`**|`int`|The port number on which the service listens|
|
D | mg_printf.md | 21 …onnection has been closed, **-1** if an error occurred and otherwise the number of bytes written o…
|
D | mg_url_decode.md | 19 |`int`|The number of bytes stored in the destination buffer, or **-1** if the buffer doesn't exist …
|
D | mg_send_chunk.md | 23 The function returns a number **>0** if data was sent, the value **0** when the connection has been…
|
D | mg_send_digest_access_authentication_request.md | 26 The function returns a negative number on errors.
|
D | mg_check_digest_access_authentication.md | 30 The function returns a negative number on errors.
|
/civetweb-2.7.6/ |
D | RELEASE_NOTES.md | 26 - Update version number 64 - Update version number 115 - Update version number 128 - Update version number 170 - Updated version number 198 - Add websocket client interface and encode websocket data with a simple random number 218 - Updated version number 265 - Updated version number 308 - Updated version number 336 - Allow port number to be zero to use a random free port (F-Secure Corporation)
|
/civetweb-2.7.6/docs/ |
D | APIReference.md | 15 …ent version of the software as a string with the major and minor version number separated with a d… 16 | **`CIVETWEB_VERSION_MAJOR`** | The current major version as number, e.g., (1) for version 1.9. | 17 | **`CIVETWEB_VERSION_MINOR`** | The current minor version as number, e.g., (9) for version 1.9. | 18 | **`CIVETWEB_VERSION_PATCH`** | The current patch version as number, e.g., (0) for version 1.9 or …
|
D | Embedding.md | 185 worker threads, that process accepted connections. The number of worker threads 186 is configurable via `num_threads` configuration option. That number puts a 187 limit on number of simultaneous requests that can be handled by CivetWeb. 202 The number is limited by the `listen()` call parameter,
|
/civetweb-2.7.6/src/ |
D | mod_lua_shared.inl | 171 return luaL_error(L, "shared value must be string, number or boolean"); 213 return luaL_error(L, "shared index must be string, number or boolean"); 303 return luaL_error(L, "shared index must be string, number or boolean"); 307 return luaL_error(L, "shared value must be string, number or boolean");
|
/civetweb-2.7.6/src/third_party/lua-5.1.5/ |
D | HISTORY | 106 + increased limit on the number of constants and globals per function 127 + no arbitrary limits on the total number of constants and globals. 145 + support for handling variable number of arguments in functions (varargs).
|