Searched defs:conf (Results 1 - 25 of 32) sorted by relevance

12

/forgerock/web-agents-v4/tests/
H A Dtest_config.c31 am_config_t * conf; local
57 conf = am_get_config_file(1, path);
59 assert_int_equal(!conf->not_enforced_regex_enable, AM_TRUE);
60 assert_int_equal(conf->not_enforced_map_sz, 2);
61 assert_string_equal(conf->not_enforced_map[0].value, "http://a.b.c:80/path");
62 assert_string_equal(conf->not_enforced_map[1].value, "https://a.b.c:1234/path");
64 assert_int_equal(!conf->not_enforced_ext_regex_enable, AM_TRUE);
65 assert_int_equal(conf->not_enforced_ext_map_sz, 2);
66 assert_string_equal(conf->not_enforced_ext_map[0].value, "http://a.b.c:80/path");
67 assert_string_equal(conf
82 am_config_t conf; local
[all...]
/forgerock/opendj2/ext/ant/lib/
H A Dant-apache-xalan2.jar ... .tools.ant.taskdefs.XSLTProcess$TraceConfiguration conf
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-apache-xalan2.jar ... .tools.ant.taskdefs.XSLTProcess$TraceConfiguration conf
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-apache-xalan2.jar ... .tools.ant.taskdefs.XSLTProcess$TraceConfiguration conf
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant-apache-xalan2.jar ... .tools.ant.taskdefs.XSLTProcess$TraceConfiguration conf
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Dant-apache-xalan2.jar ... .tools.ant.taskdefs.XSLTProcess$TraceConfiguration conf
/forgerock/web-agents-v4/source/
H A Dconfig_file.c392 am_config_t *conf = NULL; local
398 conf = calloc(1, sizeof (am_config_t));
399 if (conf == NULL) {
403 conf->instance_id = instance_id;
410 free(conf);
422 parse_config_value(instance_id, line, AM_AGENTS_CONFIG_LOCAL, CONF_NUMBER, NULL, &conf->local, NULL);
423 parse_config_value(instance_id, line, AM_AGENTS_CONFIG_POSTDATA_PRESERVE_DIR, CONF_STRING, NULL, &conf->pdp_dir, NULL);
424 parse_config_value(instance_id, line, AM_AGENTS_CONFIG_NAMING_URL, CONF_STRING_LIST, &conf->naming_url_sz, &conf->naming_url, AM_SPACE_CHAR);
425 parse_config_value(instance_id, line, AM_AGENTS_CONFIG_REALM, CONF_STRING, NULL, &conf
[all...]
H A Dconfig_xml.c33 am_config_t *conf; member in struct:__anon78
52 ctx->conf->user = malloc(nl + 1);
53 memcpy(ctx->conf->user, atts[i + 1], nl);
54 ctx->conf->user[nl] = 0;
64 ctx->conf->realm = malloc(nl + 1);
65 memcpy(ctx->conf->realm, atts[i + 1], nl);
66 ctx->conf->realm[nl] = 0;
106 AM_LOG_DEBUG(x->conf->instance_id, "am_parse_config_xml() %s is set to '********'",
110 AM_LOG_DEBUG(x->conf->instance_id, "am_parse_config_xml() %s is set to '%s'",
132 AM_LOG_DEBUG(x->conf
[all...]
H A Dnaming_valid.c106 am_config_t *conf = NULL; local
116 conf = am_get_config_file(w->instance_id, w->config_path);
117 if (conf == NULL) {
125 ping_diff = MAX(MIN_URL_VALIDATOR_TICK, conf->valid_ping);
130 if (conf->valid_level > 1 || conf->naming_url_sz < 2 || conf->naming_url_sz != conf->valid_default_url_sz ||
136 am_config_free(&conf);
142 if (current_index < 0 || current_index >= conf
[all...]
H A Daudit.c321 am_config_t *conf = NULL; local
322 if (am_get_agent_config(instance_id, config_file, &conf) == AM_SUCCESS) {
323 am_net_options_create(conf, wd->options, NULL);
326 am_config_free(&conf);
393 int am_audit_register_instance(am_config_t *conf) { argument
412 req.instance_id = conf->instance_id;
413 req.conf = conf;
418 if (audit_data->config[i].instance_id == conf->instance_id) {
419 audit_data->config[i].interval = conf
[all...]
H A Dnet_client.c272 void am_net_options_create(am_config_t *conf, am_net_options_t *options, void (*log)(const char *, ...)) { argument
274 if (conf == NULL || options == NULL) return;
276 options->local = conf->local;
277 options->lb_enable = conf->lb_enable;
278 options->net_timeout = conf->net_timeout;
279 options->cert_trust = conf->cert_trust;
280 options->keepalive = !conf->keepalive_disable;
281 options->cert_key_pass_sz = conf->cert_key_pass_sz;
283 options->notif_url = ISVALID(conf->notif_url) ? strdup(conf
[all...]
H A Dam.h277 am_config_t *conf; /*agent configuration*/ member in struct:am_request
H A Dadmin.c28 #define APACHE_DEFAULT_CONF_FILE "c:\\Apache\\conf\\httpd.conf"
31 #define APACHE_DEFAULT_CONF_FILE "/opt/apache/conf/httpd.conf"
362 * @param web_conf_path The path of the conf.d file (in the case of Apache)
368 * @param uid The uid of the user specified by "User" in the conf.d file in the case of Apache
369 * @param gid The gid of the group specified by "Group" in the conf.d file in the case of Apache
412 am_asprintf(&conf_file_path, "%s"FILE_PATH_SEP"config"FILE_PATH_SEP"agent.conf", created_name_path);
684 /* update Apache httpd.conf (global context only) */
689 "AmAgentConf %s"FILE_PATH_SEP"config"FILE_PATH_SEP"agent.conf\
1131 char *conf = NULL; local
1779 char *conf; local
[all...]
H A Dconfig.c170 static am_shm_t *conf = NULL; variable
173 if (conf != NULL) return AM_SUCCESS;
175 conf = am_shm_create(get_global_name(AM_CONFIG_SHM_NAME, id), sizeof (struct am_instance) * 2048 * AM_MAX_INSTANCES);
176 if (conf == NULL) {
179 if (conf->error != AM_SUCCESS) {
180 return conf->error;
183 if (conf->init) {
185 struct am_instance *instance_data = (struct am_instance *) am_shm_alloc(conf, sizeof (struct am_instance));
189 am_shm_lock(conf);
193 am_shm_set_user_offset(conf, AM_GET_OFFSE
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DEntitlementService.java222 ServiceConfig conf = getApplicationTypeCollectionConfig(
224 Set<String> names = conf.getSubConfigNames();
226 ServiceConfig appType = conf.getSubConfig(name);
404 private Application createApplication(ServiceConfig conf, String appName) throws argument
407 final Map<String, Set<String>> data = conf.getSubConfig(appName).getAttributes();
483 ServiceConfig conf = orgConfig.getSubConfig(EntitlementUtils.REGISTERED_APPLICATIONS);
484 if (conf != null) {
485 applConf = conf.getSubConfig(appName);
502 ServiceConfig conf = getApplicationCollectionConfig(realm);
503 if (conf !
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java120 private UninstallData conf; field in class:Uninstaller
460 conf = returnValue;
461 if (conf.isADS() && conf.isReplicationServer())
463 if (conf.isServerRunning())
527 else if (!conf.isServerRunning())
1625 conf.getReplicationServerPort());
/forgerock/opendj2/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java119 private UninstallData conf; field in class:Uninstaller
459 conf = returnValue;
460 if (conf.isADS() && conf.isReplicationServer())
462 if (conf.isServerRunning())
526 else if (!conf.isServerRunning())
1624 conf.getReplicationServerPort());
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java120 private UninstallData conf; field in class:Uninstaller
460 conf = returnValue;
461 if (conf.isADS() && conf.isReplicationServer())
463 if (conf.isServerRunning())
527 else if (!conf.isServerRunning())
1625 conf.getReplicationServerPort());
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java119 private UninstallData conf; field in class:Uninstaller
459 conf = returnValue;
460 if (conf.isADS() && conf.isReplicationServer())
462 if (conf.isServerRunning())
526 else if (!conf.isServerRunning())
1624 conf.getReplicationServerPort());
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/uninstaller/
H A DUninstaller.java212 private UninstallData conf; field in class:Uninstaller
552 conf = returnValue;
553 if (conf.isADS() && conf.isReplicationServer())
555 if (conf.isServerRunning())
619 else if (!conf.isServerRunning())
1684 conf.getReplicationServerPort());
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DEntitlementService.java203 ServiceConfig conf = getApplicationTypeCollectionConfig(
205 Set<String> names = conf.getSubConfigNames();
207 ServiceConfig appType = conf.getSubConfig(name);
415 private Application createApplication(ServiceConfig conf, String appName) throws argument
418 final Map<String, Set<String>> data = conf.getSubConfig(appName).getAttributes();
533 ServiceConfig conf = orgConfig.getSubConfig(EntitlementUtils.REGISTERED_APPLICATIONS);
534 if (conf != null) {
535 applConf = conf.getSubConfig(appName);
574 ServiceConfig conf = getApplicationCollectionConfig(realm);
575 if (conf !
[all...]
/forgerock/web-agents-v4/source/apache/
H A Dagent.c70 amagent_config_t *conf = (amagent_config_t *) local
73 if (!conf || !name) {
78 conf->config = apr_psprintf(c->pool, "%s", arg);
79 conf->config_id = am_instance_id(conf->config);
81 ac = am_get_config_file(conf->config_id, conf->config);
83 conf->debug_file = ac->debug_file != NULL ? apr_pstrdup(c->pool, ac->debug_file) : NULL;
84 conf->audit_file = ac->audit_file != NULL ? apr_pstrdup(c->pool, ac->audit_file) : NULL;
85 conf
[all...]
/forgerock/web-agents-v4/source/varnish/
H A Dagent.c78 void vmod_init(const struct vrt_ctx *ctx, struct vmod_priv *priv, const char *conf) { argument
85 if (conf == NULL || access(conf, R_OK) != 0) {
87 fprintf(stderr, "am_vmod_init failed. can't access configuration file (%s)\n", LOGEMPTY(conf));
107 settings->instance_id = am_instance_id(conf);
108 settings->conf_file = strdup(conf);
114 boot = am_get_config_file(settings->instance_id, conf);
116 fprintf(stderr, "am_vmod_init failed. failed to load agent bootstrap configuration file (%s)\n", conf);
121 boot->audit_file, boot->audit_level, boot->audit, conf);
560 am_request.conf
771 init_function(struct vmod_priv *priv, const struct VCL_conf *conf) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/uninstaller/
H A DUninstaller.java115 private UninstallData conf; field in class:Uninstaller
434 conf = returnValue;
435 if (conf.isADS() && conf.isReplicationServer())
437 if (conf.isServerRunning())
492 else if (!conf.isServerRunning())
1548 conf.getReplicationServerPort());
/forgerock/web-agents-v4/source/varnish3/
H A Dagent.c79 void vmod_init(struct sess *ctx, struct vmod_priv *priv, const char *conf) { argument
86 if (conf == NULL || access(conf, R_OK) != 0) {
88 fprintf(stderr, "am_vmod_init failed. can't access configuration file (%s)\n", LOGEMPTY(conf));
113 settings->instance_id = am_instance_id(conf);
114 settings->conf_file = strdup(conf);
120 boot = am_get_config_file(settings->instance_id, conf);
122 fprintf(stderr, "am_vmod_init failed. failed to load agent bootstrap configuration file (%s)\n", conf);
127 boot->audit_file, boot->audit_level, boot->audit, conf);
610 am_request.conf
813 init_function(struct vmod_priv *priv, const struct VCL_conf *conf) argument
[all...]

Completed in 98 milliseconds

12