git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6567 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-12-07 16:58:19 +00:00
parent 9414f2dac6
commit b5fff853aa
1 changed files with 13 additions and 0 deletions

View File

@ -183,6 +183,19 @@ static abyss_bool http_directory_auth(TSession *r, char *domain_name)
box = switch_xml_attr_soft(x_user, "mailbox");
for (x_param = switch_xml_child(x_domain, "param"); x_param; x_param = x_param->next) {
const char *var = switch_xml_attr_soft(x_param, "name");
const char *val = switch_xml_attr_soft(x_param, "value");
if (!strcasecmp(var, "password")) {
mypass1 = val;
} else if (!strcasecmp(var, "vm-password")) {
mypass2 = val;
} else if (!strncasecmp(var, "http-", 5)) {
ResponseAddField(r, (char *)var, (char *)val);
}
}
if (!(x_params = switch_xml_child(x_user, "params"))) {
goto authed;
}