2004-01-28 20:02:12 -05:00
|
|
|
/* 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).
|
2018-11-26 02:42:05 -05:00
|
|
|
* Copyright 2018, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
|
2004-01-28 20:02:12 -05:00
|
|
|
*/
|
|
|
|
|
2002-08-05 10:48:04 -04:00
|
|
|
#ifndef __SLAVE_H__
|
|
|
|
#define __SLAVE_H__
|
|
|
|
|
2014-12-02 16:50:57 -05:00
|
|
|
#include "common/thread/thread.h"
|
2018-06-17 06:33:10 -04:00
|
|
|
#include "icecasttypes.h"
|
2018-07-20 07:01:51 -04:00
|
|
|
#include "cfgfile.h"
|
2004-02-19 15:28:21 -05:00
|
|
|
|
2002-08-05 10:48:04 -04:00
|
|
|
void slave_initialize(void);
|
|
|
|
void slave_shutdown(void);
|
2007-10-21 22:29:49 -04:00
|
|
|
void slave_update_all_mounts (void);
|
2005-05-15 20:16:12 -04:00
|
|
|
void slave_rebuild_mounts (void);
|
2018-07-20 07:01:51 -04:00
|
|
|
void relay_config_free (relay_config_t *relay);
|
|
|
|
relay_t *relay_free (relay_t *relay);
|
2002-08-05 10:48:04 -04:00
|
|
|
|
|
|
|
#endif /* __SLAVE_H__ */
|