mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
0aad6d849c
svn path=/trunk/httpp/; revision=5792
76 lines
1.9 KiB
C
76 lines
1.9 KiB
C
/* Icecast
|
|
*
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
* A copy of this license is included with this source.
|
|
*
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
* Michael Smith <msmith@xiph.org>,
|
|
* oddsock <oddsock@xiph.org>,
|
|
* Karl Heyes <karl@xiph.org>
|
|
* and others (see AUTHORS for details).
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include "cfgfile.h"
|
|
|
|
void _dump_config(ice_config_t *config);
|
|
|
|
int main(void)
|
|
{
|
|
ice_config_t *config;
|
|
|
|
config_initialize();
|
|
|
|
config_parse_file("icecast.xml");
|
|
|
|
config = config_get_config_unlocked();
|
|
|
|
_dump_config(config);
|
|
|
|
config_shutdown();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void _dump_config(ice_config_t *config)
|
|
{
|
|
ice_config_dir_t *node;
|
|
|
|
printf("-----\n");
|
|
printf("location = %s\n", config->location);
|
|
printf("admin = %s\n", config->admin);
|
|
printf("client_limit = %d\n", config->client_limit);
|
|
printf("source_limit = %d\n", config->source_limit);
|
|
printf("threadpool_size = %d\n", config->threadpool_size);
|
|
printf("client_timeout = %d\n", config->client_timeout);
|
|
printf("source_password = %s\n", config->source_password);
|
|
printf("touch_interval = %d\n", config->touch_interval);
|
|
|
|
node = config->dir_list;
|
|
while (node) {
|
|
printf("directory.touch_interval = %d\n", node->touch_interval);
|
|
printf("directory.host = %s\n", node->host);
|
|
|
|
node = node->next;
|
|
}
|
|
|
|
printf("hostname = %s\n", config->hostname);
|
|
printf("port = %d\n", config->port);
|
|
printf("bind_address = %s\n", config->bind_address);
|
|
printf("base_dir = %s\n", config->base_dir);
|
|
printf("log_dir = %s\n", config->log_dir);
|
|
printf("access_log = %s\n", config->access_log);
|
|
printf("error_log = %s\n", config->error_log);
|
|
printf("loglevel = %d\n", config->loglevel);
|
|
printf("-----\n");
|
|
}
|
|
|
|
|
|
|
|
|
|
|