Lines Matching defs:config

208 	IPPListenerConfig *config;
275 config = ap_get_module_config(r->per_dir_config, &ipp_module);
276 if (config != NULL) {
278 "conformance", config->conformance);
280 "operations", config->operations);
281 if (config->default_user != NULL)
284 config->default_user);
285 if (config->default_svc != NULL)
288 config->default_svc);
382 IPPListenerConfig *config;
384 config = ap_pcalloc(p, sizeof (*config));
386 config = apr_pcalloc(p, sizeof (*config));
389 if (config != NULL) {
390 (void) memset(config, 0, sizeof (*config));
391 config->conformance = IPP_PARSE_CONFORMANCE_RASH;
392 config->default_user = NULL;
393 config->default_svc = NULL;
394 (void) ipp_configure_operation(&config->operations,
398 return (config);
405 IPPListenerConfig *config = (IPPListenerConfig *)cfg;
408 config->conformance = IPP_PARSE_CONFORMANCE_RASH;
410 config->conformance = IPP_PARSE_CONFORMANCE_LOOSE;
412 config->conformance = IPP_PARSE_CONFORMANCE_STRICT;
424 IPPListenerConfig *config = (IPPListenerConfig *)cfg;
427 status = ipp_configure_operation(&config->operations,
445 IPPListenerConfig *config = (IPPListenerConfig *)cfg;
447 config->default_user = (char *)arg;
455 IPPListenerConfig *config = (IPPListenerConfig *)cfg;
457 config->default_svc = (char *)arg;
527 create_ipp_dir_config, /* create per-dir config */
528 NULL, /* merge per-dir config */
529 NULL, /* create per-server config */
530 NULL, /* merge per-server config */
531 ipp_cmds, /* table of config commands */
559 create_ipp_dir_config, /* create per-dir config structures */
560 NULL, /* merge per-dir config structures */
561 NULL, /* create per-server config structures */
562 NULL, /* merge per-server config structures */
563 ipp_cmds, /* table of config file commands */