mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Feature: Allow header_* not require being set in lowercase
This commit is contained in:
parent
f2c474ec63
commit
fa5e2ffee6
@ -601,10 +601,13 @@ int auth_get_url_auth(auth_t *authenticator, config_options_t *options)
|
||||
replace_string(&(url_info->timelimit_header), options->value);
|
||||
} else if (strcmp(options->name, "header_auth") == 0) {
|
||||
replace_string(&(url_info->header_auth), options->value);
|
||||
util_strtolower(url_info->header_message);
|
||||
} else if (strcmp(options->name, "header_timelimit") == 0) {
|
||||
replace_string(&(url_info->header_timelimit), options->value);
|
||||
util_strtolower(url_info->header_message);
|
||||
} else if (strcmp(options->name, "header_message") == 0) {
|
||||
replace_string(&(url_info->header_message), options->value);
|
||||
util_strtolower(url_info->header_message);
|
||||
} else {
|
||||
ICECAST_LOG_ERROR("Unknown option: %s", options->name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user