mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
9acef4801e
per-mountpoint configuration (some of these are given as examples in the config file, but they aren't yet used). svn path=/trunk/icecast/; revision=4338
35 lines
528 B
C
35 lines
528 B
C
#ifndef __GLOBAL_H__
|
|
#define __GLOBAL_H__
|
|
|
|
#define ICE_LISTEN_QUEUE 5
|
|
|
|
#define ICE_RUNNING 1
|
|
#define ICE_HALTING 2
|
|
|
|
#define ICECAST_VERSION_STRING "Icecast 2.0-alpha2/cvs"
|
|
|
|
#include "thread/thread.h"
|
|
|
|
typedef struct ice_global_tag
|
|
{
|
|
int serversock;
|
|
|
|
int running;
|
|
|
|
int sources;
|
|
int clients;
|
|
|
|
avl_tree *source_tree;
|
|
|
|
cond_t shutdown_cond;
|
|
} ice_global_t;
|
|
|
|
extern ice_global_t global;
|
|
|
|
void global_initialize(void);
|
|
void global_shutdown(void);
|
|
void global_lock(void);
|
|
void global_unlock(void);
|
|
|
|
#endif /* __GLOBAL_H__ */
|