1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Make some more vars local (static).

svn path=/icecast/trunk/icecast/; revision=18643
This commit is contained in:
Philipp Schafft 2012-10-10 22:48:15 +00:00
parent 4927a1109d
commit 469844374a
2 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ static SSL_CTX *ssl_ctx;
#endif
/* filtering client connection based on IP */
cache_file_contents banned_ip, allowed_ip;
static cache_file_contents banned_ip, allowed_ip;
rwlock_t _source_shutdown_rwlock;

View File

@ -67,8 +67,8 @@
#define BUFSIZE 4096
fserve_t *active_list = NULL;
fserve_t *pending_list = NULL;
static fserve_t *active_list = NULL;
static fserve_t *pending_list = NULL;
static spin_t pending_lock;
static avl_tree *mimetypes = NULL;