/httpd/modules/ssl/ |
H A D | ssl_ct_sct.h | 37 unsigned char version; member in struct:__anon315
|
/httpd/server/ |
H A D | provider.c | 173 char *group, *version; local 189 apr_hash_this(vers_hi, (void *)&version, NULL, NULL); 193 entry->provider_version = version;
|
H A D | util_fcgi.c | 29 a[AP_FCGI_HDR_VERSION_OFFSET] = h->version; 42 h->version = a[AP_FCGI_HDR_VERSION_OFFSET]; 52 AP_DECLARE(void) ap_fcgi_header_fields_from_array(unsigned char *version, argument 59 *version = a[AP_FCGI_HDR_VERSION_OFFSET]; 87 header->version = AP_FCGI_VERSION_1;
|
H A D | apreq_cookie.c | 70 case 'v': /* version; value is not an attr */ 299 unsigned version; local 305 version = NETSCAPE; 313 version = RFC; 357 else if (version == NETSCAPE) { 400 if (version != NETSCAPE) 401 apreq_cookie_version_set(c, version); 438 unsigned version = apreq_cookie_version(c); local 450 if (version == NETSCAPE) { 487 /* c->version [all...] |
H A D | core.c | 3298 AP_DECLARE(void) ap_get_server_revision(ap_version_t *version) argument 3300 version->major = AP_SERVER_MAJORVERSION_NUMBER; 3301 version->minor = AP_SERVER_MINORVERSION_NUMBER; 3302 version->patch = AP_SERVER_PATCHLEVEL_NUMBER; 3303 version->add_string = AP_SERVER_ADD_STRING; 3321 * If the version string is null, register our cleanup to reset the
|
/httpd/modules/metadata/ |
H A D | mod_version.c | 19 * Allow conditional configuration depending on the httpd version 39 * If minor version and patch level are omitted they are assumed to be 0. 41 * Alternatively you can match the whole version (including some vendor-added 42 * string of the CORE version, see ap_release.h) against a regular expression: 69 /* queried httpd version */ 74 * compare the supplied version with the core one 79 int version[3] = {0, 0, 0}; local 90 /* parse supplied version */ 98 version[c++] = atoi(version_string); 116 if (httpd_version.major > version[ 304 AP_DECLARE_MODULE(version) = variable [all...] |
/httpd/include/ |
H A D | util_fcgi.h | 41 /** See values for version, below */ 42 unsigned char version; member in struct:__anon43 70 * Possible values for the version field of ap_fcgi_header 164 * @param version The version, on output 171 AP_DECLARE(void) ap_fcgi_header_fields_from_array(unsigned char *version,
|
H A D | http_config.h | 341 /** API version, *not* module version; check that module is 342 * compatible with this version of the server. 344 int version; member in struct:module_struct 345 /** API minor version. Provides API feature milestones. Not checked 448 * provide a version check; this should allow us to deal with changes to 453 * signal an error). See src/include/ap_mmn.h for MMN version history.
|
H A D | httpd.h | 191 /** default limit on bytes in Request-Line (Method+URI+HTTP-version) */ 401 * @brief The numeric version information is broken out into fields within this 412 * Return httpd's version information in a numeric form. 414 * @param version Pointer to a version structure for returning the version 417 AP_DECLARE(void) ap_get_server_revision(ap_version_t *version); variable 430 * version and information about some modules. It is not affected 478 * A future version should dynamically generate the apr_table_t at startup. 820 /** Protocol version numbe [all...] |
/httpd/modules/dav/fs/ |
H A D | dbm.c | 53 int version; /* *minor* version of this db */ member in struct:dav_db 276 ** Initial version. 432 /* call it a major version error */ 436 "version number and cannot be used."); 458 "version number and cannot be used."); 460 db->version = m.minor; 498 m.minor = db->version; /* ### keep current minor version? */
|
/httpd/modules/proxy/ |
H A D | mod_proxy_fcgi.c | 567 unsigned char type, version; local 580 ap_fcgi_header_fields_from_array(&version, &type, &rid, 583 if (version != AP_FCGI_VERSION_1) { 585 "Got bogus version %d", (int)version);
|
/httpd/support/ |
H A D | firehose.c | 123 { "version", 257, 0, 124 " --version\t\t\t\tDisplay the version of the program." }, 149 static void version(const char * const progname) function 730 version(argv[0]);
|
/httpd/modules/aaa/ |
H A D | mod_authnz_fcgi.c | 498 unsigned char version; local 508 ap_fcgi_header_fields_from_array(&version, &type, &rid, &clen, &plen, 511 if (version != AP_FCGI_VERSION_1) { 514 "version %d", fn, (int)version);
|
/httpd/modules/test/ |
H A D | mod_policy.c | 100 const char *version; member in struct:policy_conf 298 * the request version being HTTP/1.1 and thus capable of being set 826 * - The HTTP version of the response must be at least the level specified. 842 "Request HTTP version '%s' should be at least '%s'", 843 version_string(r->proto_num), conf->version), 868 new->version = "HTTP/0.9"; 939 new->version = (add->version_set == 0) ? base->version : add->version; 1174 static const char *set_version(cmd_parms *cmd, void *dconf, const char *action, const char *version) argument [all...] |
/httpd/modules/ldap/ |
H A D | util_ldap.c | 263 int version = LDAP_VERSION3; local 342 ldap_set_option(ldc->ldap, LDAP_OPT_PROTOCOL_VERSION, &version);
|
/httpd/modules/dav/main/ |
H A D | mod_dav.c | 2887 * In a COPY operation, if the destination exists, is under version 3321 /* parse the request body (may be a version-control element) */ 3331 if (!dav_validate_root(doc, "version-control")) { 3334 "a \"version-control\" element."); 3338 /* get the version URI */ 3339 if ((child = dav_find_child(doc->root, "version")) == NULL) { 3341 "The \"version-control\" element does not contain " 3342 "a \"version\" element."); 3348 "The \"version\" element does not contain " 3353 /* get version UR 3766 dav_resource *version = NULL; local [all...] |