mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
148af4e6ee
svn path=/icecast/trunk/icecast/; revision=14031
43 lines
1.0 KiB
C
43 lines
1.0 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).
|
|
*/
|
|
|
|
#ifndef __SLAVE_H__
|
|
#define __SLAVE_H__
|
|
|
|
#include <thread/thread.h>
|
|
|
|
typedef struct _relay_server {
|
|
char *server;
|
|
int port;
|
|
char *mount;
|
|
char *username;
|
|
char *password;
|
|
char *localmount;
|
|
struct source_tag *source;
|
|
int mp3metadata;
|
|
int on_demand;
|
|
int running;
|
|
int cleanup;
|
|
time_t start;
|
|
thread_type *thread;
|
|
struct _relay_server *next;
|
|
} relay_server;
|
|
|
|
|
|
void slave_initialize(void);
|
|
void slave_shutdown(void);
|
|
void slave_update_all_mounts (void);
|
|
void slave_rebuild_mounts (void);
|
|
relay_server *relay_free (relay_server *relay);
|
|
|
|
#endif /* __SLAVE_H__ */
|