Home
last modified time | relevance | path

Searched refs:number (Results 1 – 25 of 51) sorted by relevance

123

/civetweb-2.7.6/test/
Dlinux_stderr.cgi8 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/
DcJSON.h254 …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
DcJSON.c269 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/
Dmg_get_ports.md10 |**`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.
Dmg_read.md11 |**`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…
Dmg_request_info.md19 |**`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…
Dmg_strncasecmp.md11 |**`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 …
Dmg_get_server_ports.md17 |`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.
Dmg_handle_form_request.md16 |`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…
Dmg_response_info.md26 |**`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…
Dmg_version.md17 …n returns a pointer to a string with the current major and minor version number separated with a d…
Dmg_client_cert.md11 |**`serial`**|`const char *`| The serial number of the certificate |
Dmg_store_body.md20 …the body of an incoming request to a data file. The function returns the number of bytes stored in…
Dmg_url_encode.md17 |`int`|The number of characters written in the destination buffer|
Dmg_server_port.md10 |**`port`**|`int`|The port number on which the service listens|
Dmg_printf.md21 …onnection has been closed, **-1** if an error occurred and otherwise the number of bytes written o…
Dmg_url_decode.md19 |`int`|The number of bytes stored in the destination buffer, or **-1** if the buffer doesn't exist …
Dmg_send_chunk.md23 The function returns a number **>0** if data was sent, the value **0** when the connection has been…
Dmg_send_digest_access_authentication_request.md26 The function returns a negative number on errors.
Dmg_check_digest_access_authentication.md30 The function returns a negative number on errors.
/civetweb-2.7.6/
DRELEASE_NOTES.md26 - 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/
DAPIReference.md15 …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 …
DEmbedding.md185 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/
Dmod_lua_shared.inl171 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/
DHISTORY106 + 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).

123