Searched defs:server (Results 1 - 21 of 21) sorted by relevance

/httpd/modules/lua/
H A Dlua_dbd.h36 server_rec *server; member in struct:__anon207
/httpd/os/bs2000/
H A Dos.c76 int os_init_job_environment(server_rec *server, const char *user_name, int one_process) argument
88 ap_log_error(APLOG_MARK, APLOG_ERR, 0, server, APLOGNO(02170)
/httpd/modules/database/
H A Dmod_dbd.h61 server_rec *server; member in struct:__anon101
106 * the server startup/configuration phase. Can't be called
107 * after the server has created its children (use apr_dbd_*).
/httpd/modules/ssl/
H A Dmod_ssl.c65 * Global (main-server) context configuration directives
84 * Per-server context configuration directives
147 "Use the server's cipher ordering preference")
189 "SSL Proxy: file containing server certificates "
192 "SSL Proxy: directory containing server certificates "
399 sslconn->server = c->base_server;
412 sc = mySrvConfig(sslconn->server);
435 sc = mySrvConfig(sslconn->server);
521 server_rec *server; local
526 server
[all...]
H A Dssl_engine_io.c928 ssl_log_ssl_error(SSLLOG_MARK, APLOG_INFO, sslconn->server);
989 * | The client and the server must share knowledge that the connection is
1060 "(server %s)",
1103 /* Perform the SSL handshake (whether in client or server mode), if
1114 server_rec *server; local
1120 server = sslconn->server;
1130 sc = mySrvConfig(server);
1152 ssl_log_ssl_error(SSLLOG_MARK, APLOG_WARNING, server);
1160 ssl_log_ssl_error(SSLLOG_MARK, APLOG_INFO, server);
[all...]
H A Dssl_private.h251 #define myCtxConfig(sslconn, sc) (sslconn->is_proxy ? sc->proxy : sc->server)
257 #define mySrvFromConn(c) (myConnConfig(c))->server
445 RENEG_ALLOW, /* A server-initiated renegotiation is taking
463 server_rec *server; member in struct:__anon334
481 * subsequent server reloads where the interactive password prompt is
531 /* Lists of configured certs and keys for this server */
560 /** for client or downstream server authentication */
584 SSLSrvConfigRec *sc; /** pointer back to server config */
658 modssl_ctx_t *server; member in struct:SSLSrvConfigRec
/httpd/modules/metadata/
H A Dmod_remoteip.c75 remoteip_config_t *server = (remoteip_config_t *) serverv; local
79 config->header_name = server->header_name
80 ? server->header_name
82 config->proxies_header_name = server->proxies_header_name
83 ? server->proxies_header_name
85 config->proxymatch_ip = server->proxymatch_ip
86 ? server->proxymatch_ip
94 remoteip_config_t *config = ap_get_module_config(cmd->server->module_config,
103 remoteip_config_t *config = ap_get_module_config(cmd->server->module_config,
127 remoteip_config_t *config = ap_get_module_config(cmd->server
[all...]
/httpd/os/unix/
H A Dunixd.c72 ap_log_error(APLOG_MARK, APLOG_ERR, errno, cmd->server, APLOGNO(02172)
86 ap_log_error(APLOG_MARK, APLOG_ERR, 0, cmd->server, APLOGNO(02173)
99 ap_log_error(APLOG_MARK, APLOG_ERR, 0, cmd->server, APLOGNO(02174)
116 ap_log_error(APLOG_MARK, APLOG_ERR, 0, cmd->server, APLOGNO(02175)
404 * Use the CHILDFATAL code to tear the server down.
484 int os_init_job_environment(server_rec *server, const char *user_name, int one_process) argument
496 ap_log_error(APLOG_MARK, APLOG_ERR, 0, server, APLOGNO(02180)
/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c127 hb_server_t *server; local
168 server = apr_hash_get(servers, ip, APR_HASH_KEY_STRING);
170 if (server == NULL) {
171 server = apr_pcalloc(pool, sizeof(hb_server_t));
172 server->ip = ip;
173 server->port = 80;
174 server->seen = -1;
176 apr_hash_set(servers, server->ip, APR_HASH_KEY_STRING, server);
184 server
219 hb_server_t *server = apr_hash_get(servers, slotserver->ip, APR_HASH_KEY_STRING); local
266 hb_server_t *server; local
[all...]
/httpd/modules/examples/
H A Dmod_example_hooks.c19 * It is not meant to be used in a production server. Since it participates
36 * When you look at that location on your server, you will see a backtrace of
43 * Do NOT use this module on a production server. It attaches itself to every
44 * phase of the server runtime operations including startup, shutdown and
46 * negatively affect server performance.
92 * Sample configuration record. Used for both per-directory and per-server
101 * Note that while the per-directory and per-server configuration records are
109 * (directory, server, or combination).
124 * the server is (may be) multi-threaded.
274 /* server
1353 x_create_connection(apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh, apr_bucket_alloc_t *alloc) argument
[all...]
/httpd/server/
H A Dlisten.c71 static apr_status_t make_sock(apr_pool_t *p, ap_listen_rec *server, int do_bind_listen) argument
73 apr_socket_t *s = server->sd;
89 server->bind_addr);
99 server->bind_addr);
129 server->bind_addr);
139 server->bind_addr);
158 server->bind_addr);
167 if (server->bind_addr->family == APR_INET6) {
173 server->bind_addr);
180 if ((stat = apr_socket_bind(s, server
244 ap_apply_accept_filter(apr_pool_t *p, ap_listen_rec *lis, server_rec *server) argument
[all...]
H A Dvhost.c59 server_rec *server; /* the server to use on a match */ member in struct:name_chain
71 server_rec *server; /* the server to use if this matches */ member in struct:ipaddr_chain
85 /* A (n) bucket hash table, each entry has a pointer to a server rec and
116 * Otherwise it's a name-vhost list, and the default is the server in the
323 * where the server is handling entire "networks" of servers. i.e. a
358 new->server = s;
371 new->server = s;
452 ic->server
[all...]
H A Dconfig.c24 * server core can now be found next door in "http_core.c". Now contains
200 * of modules which control just about all of the server operation.
204 * into the server.
254 * per-server, and per-request configuration, and have a void* pointer for
258 * per-directory and per-server structures, and to merge the per-directory
647 * per-dir and per-server configurations are invalid. So we should
1035 " is improperly configured internally (server bug)",
1069 AP_CORE_DECLARE(void *) ap_set_config_vectors(server_rec *server, argument
1075 void *server_config = ap_get_module_config(server->module_config, mod);
1084 server_config = (*mod->create_server_config)(pconf, server);
[all...]
/httpd/include/
H A Dhttp_config.h313 server_rec *server; member in struct:cmd_parms_struct
318 * server context (path == NULL) or being called in a dir context
342 * compatible with this version of the server.
367 * @param The process that the server is running in.
385 /** Function to allow all modules to create per server configuration
388 * @param s The server currently being processed.
389 * @return The per-server structure created
392 /** Function to allow all modules to merge the per server configuration
451 * additions of functionality to the existing API. (the server can detect
520 * @param s The server fro
[all...]
H A Dhttpd.h75 /** Define this to be the default server home dir. Most things later in this
143 /** The name of the server config file */
175 * exist to prevent simple denial-of-service attacks on a server based
177 * nature of the server resources -- CGI scripts and database backends
184 * These two limits can be lowered or raised by the server config
188 * the server config directive LimitRequestFields.
270 /* -------------- Port number for server running standalone --------------- */
300 /** The size of the server's internal read-write buffers */
321 /** A fatal error arising during the server's init sequence */
332 * A fatal error, resulting in the whole server abortin
795 server_rec *server; member in struct:request_rec
[all...]
/httpd/modules/arch/netware/
H A Dmod_nw_ssl.c247 const struct sockaddr_in *server,
256 if (server->sin_addr.s_addr != htonl(INADDR_ANY))
258 inet_ntoa(server->sin_addr), ntohs(server->sin_port));
260 apr_snprintf(addr, sizeof(addr), "port %d", ntohs(server->sin_port));
408 ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, APLOGNO(02126)
420 ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, APLOGNO(02127)
458 ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server, APLOGNO(02128)
471 NWSSLSrvConfigRec* sc = get_nwssl_cfg(cmd->server);
498 new = apr_pcalloc(cmd->server
246 make_secure_socket(apr_pool_t *pconf, const struct sockaddr_in *server, char* key, int mutual, server_rec *sconf) argument
[all...]
/httpd/modules/http/
H A Dhttp_filters.c245 ap_get_module_config(f->r->server->module_config, &core_module);
282 * reading the connection until it is closed by the server."
433 f->r->server->limit_req_fieldsize);
898 const char *server = NULL; local
934 * keep the set-by-proxy server and date headers, otherwise
935 * generate a new server header / date header
948 server = apr_table_get(r->headers_out, "Server");
957 if (!server && *us)
958 server = us;
959 if (server)
[all...]
/httpd/modules/proxy/
H A Dmod_serf.c413 (serf_server_config_t *)ap_get_module_config(r->server->module_config,
672 (serf_server_config_t *)ap_get_module_config(cmd->server->module_config,
871 hb_server_t *server; local
889 server = apr_pcalloc(pool, sizeof(hb_server_t));
890 server->ip = ip;
891 server->port = 80;
892 server->seen = -1;
898 server->busy = atoi(apr_table_get(hbt, "busy"));
902 server->ready = atoi(apr_table_get(hbt, "ready"));
906 server
[all...]
/httpd/modules/aaa/
H A Dmod_auth_digest.c34 * - The source of the secret should be run-time directive (with server
45 * captures a packet sent to one server and sends it to another
369 /* Note: this stuff is currently fixed for the lifetime of the server,
643 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, cmd->server, APLOGNO(01763)
659 "Maximum lifetime of the server nonce (seconds)"),
661 "The format to use when generating the server nonce"),
681 * server nonce, and that is checked.
1030 /* The hash part of the nonce is a SHA-1 hash of the time, realm, server host
1034 const server_rec *server,
1042 apr_sha1_update_binary(&ctx, (const unsigned char *) server
1033 gen_nonce_hash(char *hash, const char *timestr, const char *opaque, const server_rec *server, const digest_config_rec *conf) argument
1060 gen_nonce(apr_pool_t *p, apr_time_t now, const char *opaque, const server_rec *server, const digest_config_rec *conf) argument
[all...]
/httpd/modules/filters/
H A Dmod_include.c1623 eval_ctx->s = ctx->r->server;
3821 include_server_config *sconf= ap_get_module_config(r->server->module_config,
3955 if (r->handler && (strcmp(r->handler, "server-parsed") == 0))
4034 static void *create_includes_server_config(apr_pool_t *p, server_rec *server) argument
4079 conf= ap_get_module_config(cmd->server->module_config , &include_module);
4099 conf= ap_get_module_config(cmd->server->module_config , &include_module);
4190 OR_LIMIT, "Whether to allow the generation of ETags within the server. "
4216 create_includes_server_config,/* server config */
4217 NULL, /* merge server config */
/httpd/modules/mappers/
H A Dmod_rewrite.c36 * per-server context (httpd.conf) and per-dir context (.htaccess) and even
335 server_rec *server; /* the corresponding server indicator */ member in struct:__anon239
472 (void *)(r->server),
637 * Based on ap_os_escape_path in server/util.c
1430 /* when `RewriteEngine off' was used in the per-server
1589 conf = ap_get_module_config(r->server->module_config, &rewrite_module);
1835 result = rewrite_ssl_lookup(r->pool, r->server, r->connection, r,
2122 result = r->server->server_admin;
2392 /* see ap_pregsub() in server/uti
[all...]

Completed in 3023 milliseconds