Searched defs:protocol (Results 1 - 8 of 8) sorted by relevance
/httpd/include/ |
H A D | ap_listen.h | 69 * The default protocol for this listening socket. 71 const char* protocol; member in struct:ap_listen_rec 152 "A port number or a numeric IP address and a port number, and an optional protocol"), \
|
H A D | http_core.h | 665 const char *protocol; member in struct:__anon22 751 * This hook is intended for MPMs or protocol modules that need to do special
|
H A D | httpd.h | 176 * on misuse of the protocol. The recommended values will depend on the 210 /** default HTTP Server protocol */ 263 /** Internal representation for a HTTP protocol number, e.g., HTTP/1.1 */ 265 /** Major part of HTTP protocol */ 267 /** Minor part of HTTP protocol */ 807 * protocol.c should ever touch... 820 /** Protocol version number of protocol; 1.1 = 1001 */ 823 char *protocol; member in struct:request_rec 837 /* Request method, two ways; also, protocol, etc.. Outside of protocol [all...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_init.c | 200 * the protocol is https. */ 482 int protocol = mctx->protocol; local 488 if (protocol == SSL_PROTOCOL_NONE) { 495 (protocol & SSL_PROTOCOL_SSLV3 ? "SSLv3, " : ""), 496 (protocol & SSL_PROTOCOL_TLSV1 ? "TLSv1, " : ""), 498 (protocol & SSL_PROTOCOL_TLSV1_1 ? "TLSv1.1, " : ""), 499 (protocol & SSL_PROTOCOL_TLSV1_2 ? "TLSv1.2, " : ""), 507 if (protocol == SSL_PROTOCOL_SSLV3) { 512 else if (protocol [all...] |
H A D | ssl_engine_config.c | 113 mctx->protocol = SSL_PROTOCOL_ALL; 262 mrg->protocol = add->protocol; 265 mrg->protocol = base->protocol; 1342 ": Illegal protocol '", w, "'", NULL); 1372 return ssl_cmd_protocol_parse(cmd, arg, &sc->server->protocol); 1391 return ssl_cmd_protocol_parse(cmd, arg, &sc->proxy->protocol); 1866 const char *protocol) 1869 APR_ARRAY_PUSH(sc->server->ssl_alpn_pref, const char *) = protocol; 1865 ssl_cmd_SSLAlpnPreference(cmd_parms *cmd, void *dcfg, const char *protocol) argument [all...] |
H A D | ssl_private.h | 595 ssl_proto_t protocol; member in struct:__anon343 645 apr_array_header_t *ssl_alpn_pref; /* protocol names in order of preference */ 774 const char *ssl_cmd_SSLAlpnPreference(cmd_parms *cmd, void *dcfg, const char *protocol);
|
/httpd/modules/http/ |
H A D | http_filters.c | 844 * Determine the protocol to use for the response. Potentially downgrade 850 const char **protocol) 855 /* no such thing as a response protocol */ 883 *protocol = "HTTP/1.0"; 887 *protocol = AP_SERVER_PROTOCOL; 894 const char *protocol) 910 vec[0].iov_base = (void *)protocol; 911 vec[0].iov_len = strlen(protocol); 989 const char *protocol = NULL; local 991 basic_http_header_check(r, &protocol); 849 basic_http_header_check(request_rec *r, const char **protocol) argument 893 basic_http_header(request_rec *r, apr_bucket_brigade *bb, const char *protocol) argument 1131 const char *protocol = NULL; local [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy.h | 100 const char *protocol; /* the scheme used to talk to this proxy */ member in struct:proxy_remote 838 * be at least one, even if the protocol doesn't use this
|
Completed in 51 milliseconds