mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
change the option names to be more reasonable
svn path=/icecast/trunk/icecast/; revision=9731
This commit is contained in:
parent
5732ec21ea
commit
03c74becbe
@ -85,6 +85,7 @@ typedef struct {
|
|||||||
|
|
||||||
static void auth_url_clear(auth_t *self)
|
static void auth_url_clear(auth_t *self)
|
||||||
{
|
{
|
||||||
|
INFO0 ("Doing auth URL cleanup");
|
||||||
auth_url *url = self->state;
|
auth_url *url = self->state;
|
||||||
curl_easy_cleanup (url->handle);
|
curl_easy_cleanup (url->handle);
|
||||||
free (url->username);
|
free (url->username);
|
||||||
@ -382,13 +383,13 @@ int auth_get_url_auth (auth_t *authenticator, config_options_t *options)
|
|||||||
url_info->username = strdup (options->value);
|
url_info->username = strdup (options->value);
|
||||||
if(!strcmp(options->name, "password"))
|
if(!strcmp(options->name, "password"))
|
||||||
url_info->password = strdup (options->value);
|
url_info->password = strdup (options->value);
|
||||||
if(!strcmp(options->name, "add"))
|
if(!strcmp(options->name, "listener_add"))
|
||||||
url_info->addurl = strdup (options->value);
|
url_info->addurl = strdup (options->value);
|
||||||
if(!strcmp(options->name, "remove"))
|
if(!strcmp(options->name, "listener_remove"))
|
||||||
url_info->removeurl = strdup (options->value);
|
url_info->removeurl = strdup (options->value);
|
||||||
if(!strcmp(options->name, "start"))
|
if(!strcmp(options->name, "mount_add"))
|
||||||
url_info->stream_start = strdup (options->value);
|
url_info->stream_start = strdup (options->value);
|
||||||
if(!strcmp(options->name, "end"))
|
if(!strcmp(options->name, "mount_remove"))
|
||||||
url_info->stream_end = strdup (options->value);
|
url_info->stream_end = strdup (options->value);
|
||||||
if(!strcmp(options->name, "auth_header"))
|
if(!strcmp(options->name, "auth_header"))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user