mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Fix: Make global_client_list extern outside of client.c
This commit is contained in:
parent
5d5a9293ad
commit
abc701a301
@ -65,6 +65,8 @@
|
||||
#undef CATMODULE
|
||||
#define CATMODULE "client"
|
||||
|
||||
avl_tree *global_client_list;
|
||||
|
||||
static inline void client_send_500(client_t *client, const char *message);
|
||||
|
||||
/* This returns the protocol ID based on the string.
|
||||
|
@ -143,7 +143,7 @@ struct _client_tag {
|
||||
int (*check_buffer)(source_t *source, client_t *client);
|
||||
};
|
||||
|
||||
avl_tree *global_client_list;
|
||||
extern avl_tree *global_client_list;
|
||||
|
||||
protocol_t client_protocol_from_string(const char *str);
|
||||
const char * client_protocol_to_string(protocol_t protocol);
|
||||
|
Loading…
Reference in New Issue
Block a user