Searched refs:add (Results 1 - 25 of 45) sorted by relevance

12

/httpd/modules/test/
H A Dmod_policy.c26 * To enable, add the corresponding filters like so:
876 policy_conf *add = (policy_conf *) addv; local
879 new->policy = (add->policy_set == 0) ? base->policy : add->policy;
880 new->policy_set = add->policy_set || base->policy_set;
881 new->environment = (add->environment_set == 0) ? base->environment : add->environment;
882 new->environment_log = (add->environment_set == 0) ? base->environment_log
883 : add->environment_log;
884 new->environment_ignore = (add
[all...]
/httpd/modules/session/
H A Dmod_session_cookie.c184 session_cookie_dir_conf *add = (session_cookie_dir_conf *) addv; local
187 new->name = (add->name_set == 0) ? base->name : add->name;
188 new->name_attrs = (add->name_set == 0) ? base->name_attrs : add->name_attrs;
189 new->name_set = add->name_set || base->name_set;
190 new->name2 = (add->name2_set == 0) ? base->name2 : add->name2;
191 new->name2_attrs = (add->name2_set == 0) ? base->name2_attrs : add
[all...]
H A Dmod_session_dbd.c508 session_dbd_dir_conf *add = (session_dbd_dir_conf *) addv; local
511 new->name = (add->name_set == 0) ? base->name : add->name;
512 new->name_attrs = (add->name_set == 0) ? base->name_attrs : add->name_attrs;
513 new->name_set = add->name_set || base->name_set;
514 new->name2 = (add->name2_set == 0) ? base->name2 : add->name2;
515 new->name2_attrs = (add->name2_set == 0) ? base->name2_attrs : add
[all...]
H A Dmod_session.c541 session_dir_conf *add = (session_dir_conf *) addv; local
544 new->enabled = (add->enabled_set == 0) ? base->enabled : add->enabled;
545 new->enabled_set = add->enabled_set || base->enabled_set;
546 new->maxage = (add->maxage_set == 0) ? base->maxage : add->maxage;
547 new->maxage_set = add->maxage_set || base->maxage_set;
548 new->header = (add->header_set == 0) ? base->header : add->header;
549 new->header_set = add
[all...]
/httpd/modules/aaa/
H A Dmod_allowmethods.c91 am_conf_t *add = (am_conf_t *)b; local
94 if (add->allowed_set) {
95 conf->allowed = add->allowed;
96 conf->allowed_set = add->allowed_set;
H A Dmod_auth_form.c109 auth_form_config_rec *add = (auth_form_config_rec *) addv; local
112 new->providers = !add->providers ? base->providers : add->providers;
113 new->authoritative = (add->authoritative_set == 0) ? base->authoritative : add->authoritative;
114 new->authoritative_set = add->authoritative_set || base->authoritative_set;
115 new->site = (add->site_set == 0) ? base->site : add->site;
116 new->site_set = add->site_set || base->site_set;
117 new->username = (add
[all...]
H A Dmod_authz_dbd.c67 authz_dbd_cfg *add = ADD; local
70 ret->query = (add->query == NULL) ? base->query : add->query;
71 ret->redir_query = (add->redir_query == NULL)
72 ? base->redir_query : add->redir_query;
73 ret->redirect = (add->redirect == -1) ? base->redirect : add->redirect;
H A Dmod_authn_dbd.c58 authn_dbd_conf *add = ADD; local
61 ret->user = (add->user == NULL) ? base->user : add->user;
62 ret->realm = (add->realm == NULL) ? base->realm : add->realm;
152 /* add the rest of the columns to the environment */
248 /* add the rest of the columns to the environment */
/httpd/modules/mappers/
H A Dmod_dir.c158 dir_config_rec *add = (dir_config_rec *)addv; local
160 new->index_names = add->index_names ? add->index_names : base->index_names;
162 (add->do_slash == MODDIR_UNSET) ? base->do_slash : add->do_slash;
164 (add->checkhandler == MODDIR_UNSET) ? base->checkhandler : add->checkhandler;
166 (add->redirect_index == REDIRECT_UNSET) ? base->redirect_index : add->redirect_index;
167 new->dflt = add
[all...]
H A Dmod_actions.c75 action_dir_config *add = (action_dir_config *) addv; local
80 new->action_types = apr_table_overlay(p, add->action_types,
84 new->scripted[i] = add->scripted[i] ? add->scripted[i]
88 new->configured = (base->configured || add->configured);
/httpd/modules/metadata/
H A Dmod_env.c50 env_dir_config_rec *add = addv; local
60 * foreach $unsetenv ( @add->unsetenv )
62 * foreach $element ( @add->vars )
65 * add->unsetenv already removed the vars from add->vars,
71 arr = apr_table_elts(add->unsetenv);
80 arr = apr_table_elts(add->vars);
H A Dmod_cern_meta.c158 cern_meta_dir_config *add = (cern_meta_dir_config *) addv; local
162 new->metadir = add->metadir ? add->metadir : base->metadir;
163 new->metasuffix = add->metasuffix ? add->metasuffix : base->metasuffix;
164 new->metafiles = add->metafiles;
H A Dmod_expires.c144 * add support for Cache-Control: max-age=20 from the HTTP/1.1
146 * add per-file expiry and explicit expiry times - duplicates some
364 expires_dir_config *add = (expires_dir_config *) addv; local
366 if (add->active == ACTIVE_DONTCARE) {
370 new->active = add->active;
373 if (add->expiresdefault != NULL) {
374 new->expiresdefault = add->expiresdefault;
379 new->wildcards = add->wildcards;
380 new->expiresbytype = apr_table_overlay(p, add->expiresbytype,
454 /* Don't add Expire
[all...]
/httpd/modules/arch/netware/
H A Dmod_netware.c62 netware_dir_config *add = (netware_dir_config *) addv; local
65 new->file_type_handlers = apr_table_overlay(p, add->file_type_handlers, base->file_type_handlers);
66 new->file_handler_mode = apr_table_overlay(p, add->file_handler_mode, base->file_handler_mode);
67 new->extra_env_vars = apr_table_overlay(p, add->extra_env_vars, base->extra_env_vars);
152 /* If we have a registered command then add the file that was passed in as a
/httpd/modules/generators/
H A Dmod_autoindex.c277 * wildcards already (or we need to add them), add leading and
280 * add a slash to the prefix so that "bar/bletch" won't be matched
641 autoindex_config_rec *add = (autoindex_config_rec *) addv; local
644 new->default_icon = add->default_icon ? add->default_icon
646 new->style_sheet = add->style_sheet ? add->style_sheet
648 new->head_insert = add->head_insert ? add
[all...]
/httpd/modules/cache/
H A Dmod_cache.c65 * add CACHE_SAVE filter
173 * add cache_save filter
176 * add cache_out filter
473 * add cache_save filter
476 * add cache_out filter
909 /* add a revalidation warning */
1752 * If configured, add the status of the caching attempt to the subprocess
1888 /* add a revalidation warning */
1949 cache_dir_conf *add = (cache_dir_conf *) addv; local
1952 new->no_last_mod_ignore = (add
[all...]
/httpd/modules/database/
H A Dmod_dbd.c119 dbd_cfg_t *add = ((svr_cfg*) addv)->cfg; local
123 new->server = add->server;
124 new->name = (add->name != no_dbdriver) ? add->name : base->name;
125 new->params = strcmp(add->params, "") ? add->params : base->params;
126 new->persist = (add->persist != -1) ? add->persist : base->persist;
128 new->nmin = (add->set&NMIN_SET) ? add
[all...]
/httpd/modules/filters/
H A Dmod_buffer.c100 /* should we add an etag? */
308 buffer_conf *add = (buffer_conf *) addv; local
311 new->size = (add->size_set == 0) ? base->size : add->size;
312 new->size_set = add->size_set || base->size_set;
H A Dmod_reqtimeout.c475 reqtimeout_srv_cfg *add = add_; local
478 MERGE_INT(cfg, base, add, header_timeout);
479 MERGE_INT(cfg, base, add, header_max_timeout);
480 MERGE_INT(cfg, base, add, header_min_rate);
481 MERGE_INT(cfg, base, add, body_timeout);
482 MERGE_INT(cfg, base, add, body_max_timeout);
483 MERGE_INT(cfg, base, add, body_min_rate);
486 base->header_rate_factor : add->header_rate_factor;
488 base->body_rate_factor : add->body_rate_factor;
H A Dmod_reflector.c189 reflector_cfg *add = (reflector_cfg *) addv; local
192 new->headers = apr_table_overlay(p, add->headers, base->headers);
H A Dmod_request.c345 request_dir_conf *add = (request_dir_conf *) addv; local
348 new->keep_body = (add->keep_body_set == 0) ? base->keep_body : add->keep_body;
349 new->keep_body_set = add->keep_body_set || base->keep_body_set;
/httpd/build/
H A DNWGNUscripts.inc9 @echo $(DL)# search add SYS:/$(BASEDIR)$(DL)>> $@
20 @echo $(DL)# search add SYS:/$(BASEDIR)$(DL)>> $@
/httpd/support/
H A Ddbmmanage.in47 groups or comment of - for add and adduser commands is the empty value
253 dbmc->add;
257 sub dbmc::add {
275 dbmc->add;
309 dbmc->add;
/httpd/modules/http/
H A Dmod_mime.c197 mime_dir_config *add = (mime_dir_config *)addv; local
200 if (base->extension_mappings && add->extension_mappings) {
201 new->extension_mappings = apr_hash_merge(p, add->extension_mappings,
208 new->extension_mappings = add->extension_mappings;
217 if (new->extension_mappings && add->remove_mappings) {
224 if (add->remove_mappings)
225 remove_items(p, add->remove_mappings, new->extension_mappings);
229 new->default_language = add->default_language ?
230 add->default_language : base->default_language;
232 new->multimatch = (add
[all...]
/httpd/modules/ssl/
H A Dssl_engine_config.c250 #define cfgMerge(el,unset) mrg->el = (add->el == (unset)) ? base->el : add->el
251 #define cfgMergeArray(el) mrg->el = apr_array_append(p, base->el, add->el)
258 modssl_ctx_t *add,
261 if (add->protocol_set) {
262 mrg->protocol = add->protocol;
317 modssl_ctx_t *add,
320 modssl_ctx_cfg_merge(p, base, add, mrg);
329 modssl_ctx_t *add,
332 modssl_ctx_cfg_merge(p, base, add, mr
256 modssl_ctx_cfg_merge(apr_pool_t *p, modssl_ctx_t *base, modssl_ctx_t *add, modssl_ctx_t *mrg) argument
315 modssl_ctx_cfg_merge_proxy(apr_pool_t *p, modssl_ctx_t *base, modssl_ctx_t *add, modssl_ctx_t *mrg) argument
327 modssl_ctx_cfg_merge_server(apr_pool_t *p, modssl_ctx_t *base, modssl_ctx_t *add, modssl_ctx_t *mrg) argument
351 SSLSrvConfigRec *add = (SSLSrvConfigRec *)addv; local
413 SSLDirConfigRec *add = (SSLDirConfigRec *)addv; local
[all...]

Completed in 46 milliseconds

12