Searched refs:number (Results 1 - 8 of 8) sorted by relevance
/httpd/support/ |
H A D | log_server_status.in | 67 my ( $requests, $idle, $number, $cpu ); 71 $number = $1 if (m|sses:\ (\S+)|); 74 print OUT "$time:$requests:$idle:$number:$cpu\n";
|
/httpd/modules/lua/ |
H A D | lua_request.h | 54 lua_Number number; member in struct:__anon212
|
H A D | lua_request.c | 1804 * - Sleep for the specified number of microseconds. 1947 if (object->type == LUA_TBOOLEAN) lua_pushboolean(L, (int) object->number); 1948 else if (object->type == LUA_TNUMBER) lua_pushnumber(L, object->number); 1982 if (object->type == LUA_TNUMBER) object->number = lua_tonumber(L, 3); 1983 else if (object->type == LUA_TBOOLEAN) object->number = lua_tonumber(L, 3);
|
/httpd/modules/http/ |
H A D | byterange_filter.c | 78 * Returns: number of ranges (merged) or -1 for no-good 141 apr_off_t number, start, end; local 157 if (apr_strtoff(&number, dash+1, &errp, 10) || *errp) { 160 if (number < 1) { 163 start = clength - number; 168 if (apr_strtoff(&number, cur, &errp, 10) || *errp) { 171 start = number; 173 if (apr_strtoff(&number, dash, &errp, 10) || *errp) { 176 end = number;
|
/httpd/include/ |
H A D | httpd.h | 116 /** Maximum number of dynamically loaded modules */ 168 /** The number of requests to entertain per connection */ 199 /** default limit on number of request header fields */ 263 /** Internal representation for a HTTP protocol number, e.g., HTTP/1.1 */ 266 #define HTTP_VERSION_MAJOR(number) ((number)/1000) 268 #define HTTP_VERSION_MINOR(number) ((number)%1000) 270 /* -------------- Port number for server running standalone --------------- */ 278 * @param port The port number [all...] |
/httpd/modules/mappers/ |
H A D | mod_negotiation.c | 192 * mime_stars -- initialized to zero. Set to the number of stars 264 int count_multiviews_variants; /* number of variants found on disk */ 997 apr_off_t number; local 1000 if (apr_strtoff(&number, body1, &errp, 10) != APR_SUCCESS 1001 || *errp || number < 0) { 1008 mime_info.bytes = number; 1612 * header. Note that HTTP/1.x allows any number of 2470 * Note that if you change the number of substrings pushed, you also 2655 * Note that if you change the number of substrings pushed, you also 2831 /* GET or HEAD? (HEAD has same method number a [all...] |
/httpd/server/ |
H A D | core.c | 623 * as the minor key during sorting. The major key is the number of 650 /* we always sort next by the number of components 659 /* They have the same number of components, we now have to compare 1547 /* 1st parameter should be a 3 digit number, which we recognize; 2142 /* check for builtin or module registered method number */ 2277 * All others are sorted and tested by the number of slashes. 2870 return apr_pstrcat(cmd->temp_pool, "The port number \"", arg, 4242 "Set a number of attributes for a given directory"), 4319 "Limit (0 = unlimited) on max number of header fields in a request message"), 4330 "Maximum number o 5138 apr_uint32_t number; local [all...] |
/httpd/modules/aaa/ |
H A D | mod_auth_digest.c | 347 #error APR random number support is missing 677 * Each client is assigned a number, which is transferred in the opaque 678 * field of the WWW-Authenticate and Authorization headers. The number 680 * Clients can't forge this number because it is hashed up into the 685 * off it. The client's number modulo the size of the array gives the 686 * bucket number. 697 * and it keeps the hash table evenly balanced (i.e. same number of entries 708 * indicating the number of clients held, the number of garbage collected 709 * clients, and the number o [all...] |
Completed in 2874 milliseconds