1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Cleanup: Remove unused touch_interval config

This commit is contained in:
Marvin Scholz 2020-04-23 03:03:22 +02:00
parent 271ef864ac
commit f2547c7cb0
3 changed files with 0 additions and 6 deletions

View File

@ -63,7 +63,6 @@
#define CONFIG_DEFAULT_SHOUTCAST_MOUNT "/stream" #define CONFIG_DEFAULT_SHOUTCAST_MOUNT "/stream"
#define CONFIG_DEFAULT_SHOUTCAST_USER "source" #define CONFIG_DEFAULT_SHOUTCAST_USER "source"
#define CONFIG_DEFAULT_FILESERVE 1 #define CONFIG_DEFAULT_FILESERVE 1
#define CONFIG_DEFAULT_TOUCH_FREQ 5
#define CONFIG_DEFAULT_HOSTNAME "localhost" #define CONFIG_DEFAULT_HOSTNAME "localhost"
#define CONFIG_DEFAULT_PLAYLIST_LOG NULL #define CONFIG_DEFAULT_PLAYLIST_LOG NULL
#define CONFIG_DEFAULT_ACCESS_LOG "access.log" #define CONFIG_DEFAULT_ACCESS_LOG "access.log"
@ -867,8 +866,6 @@ static void _set_defaults(ice_config_t *configuration)
->shoutcast_user = (char *) xmlCharStrdup(CONFIG_DEFAULT_SHOUTCAST_USER); ->shoutcast_user = (char *) xmlCharStrdup(CONFIG_DEFAULT_SHOUTCAST_USER);
configuration configuration
->fileserve = CONFIG_DEFAULT_FILESERVE; ->fileserve = CONFIG_DEFAULT_FILESERVE;
configuration
->touch_interval = CONFIG_DEFAULT_TOUCH_FREQ;
configuration configuration
->on_demand = 0; ->on_demand = 0;
configuration configuration

View File

@ -213,8 +213,6 @@ struct ice_config_tag {
struct event_registration_tag *event; struct event_registration_tag *event;
int touch_interval;
char *hostname; char *hostname;
int sane_hostname; int sane_hostname;
int port; int port;

View File

@ -47,7 +47,6 @@ void _dump_config(ice_config_t *config)
printf("threadpool_size = %d\n", config->threadpool_size); printf("threadpool_size = %d\n", config->threadpool_size);
printf("client_timeout = %d\n", config->client_timeout); printf("client_timeout = %d\n", config->client_timeout);
printf("source_password = %s\n", config->source_password); printf("source_password = %s\n", config->source_password);
printf("touch_interval = %d\n", config->touch_interval);
printf("hostname = %s\n", config->hostname); printf("hostname = %s\n", config->hostname);
printf("port = %d\n", config->port); printf("port = %d\n", config->port);
printf("bind_address = %s\n", config->bind_address); printf("bind_address = %s\n", config->bind_address);