Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
43953202
Commit
43953202
authored
Jul 21, 2003
by
Karl Heyes
Browse files
refer to cfgfile.h instead of config.h for icecast.xml, and use config.h
for autoconf svn path=/trunk/icecast/; revision=5156
parent
88fd04cf
Changes
22
Hide whitespace changes
Inline
Side-by-side
src/admin.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
...
...
@@ -6,7 +10,7 @@
#include <libxml/parser.h>
#include <libxml/tree.h>
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "connection.h"
#include "refbuf.h"
#include "client.h"
...
...
src/client.c
View file @
43953202
...
...
@@ -4,6 +4,10 @@
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
...
...
src/configtest.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include "c
onfig
.h"
#include "c
fgfile
.h"
void
_dump_config
(
ice_config_t
*
config
);
...
...
src/connection.c
View file @
43953202
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
@@ -27,7 +31,7 @@
#include "net/sock.h"
#include "httpp/httpp.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "global.h"
#include "util.h"
#include "connection.h"
...
...
src/event.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "event.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "refbuf.h"
#include "client.h"
...
...
src/format.c
View file @
43953202
...
...
@@ -5,6 +5,10 @@
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <time.h>
...
...
src/format_mp3.c
View file @
43953202
...
...
@@ -5,6 +5,10 @@
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
src/format_vorbis.c
View file @
43953202
...
...
@@ -4,6 +4,10 @@
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
src/fserve.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
@@ -28,7 +32,7 @@
#include "stats.h"
#include "format.h"
#include "logging.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "util.h"
#include "fserve.h"
...
...
src/geturl.c
View file @
43953202
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
...
...
@@ -12,7 +16,7 @@
#include "format.h"
#include "geturl.h"
#include "source.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include <curl/curl.h>
#include <curl/types.h>
...
...
src/global.c
View file @
43953202
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include "thread/thread.h"
...
...
src/logging.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <time.h>
#include <string.h>
...
...
@@ -10,7 +14,7 @@
#include "client.h"
#include "os.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "logging.h"
#ifdef _WIN32
...
...
src/main.c
View file @
43953202
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
...
...
@@ -15,7 +19,7 @@
#include <errno.h>
#endif
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "sighandler.h"
#include "global.h"
...
...
src/refbuf.c
View file @
43953202
...
...
@@ -4,6 +4,10 @@
**
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
...
...
src/sighandler.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <signal.h>
#include "thread/thread.h"
...
...
@@ -46,8 +50,6 @@ void _sig_hup(int signo)
connection_inject_event
(
EVENT_CONFIG_READ
,
NULL
);
/* reopen logfiles (TODO: We don't do this currently) */
/* some OSes require us to reattach the signal handler */
signal
(
SIGHUP
,
_sig_hup
);
}
...
...
src/slave.c
View file @
43953202
...
...
@@ -6,6 +6,10 @@
* and creates source threads for any it doesn't already have.
* */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
@@ -30,7 +34,7 @@
#include "net/sock.h"
#include "httpp/httpp.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "global.h"
#include "util.h"
#include "connection.h"
...
...
src/source.c
View file @
43953202
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
@@ -26,7 +30,7 @@
#include "client.h"
#include "stats.h"
#include "logging.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "util.h"
#ifdef USE_YP
#include "geturl.h"
...
...
src/source.h
View file @
43953202
#ifndef __SOURCE_H__
#define __SOURCE_H__
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "yp.h"
#include "util.h"
#include "format.h"
...
...
src/stats.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
...
...
src/util.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
...
...
@@ -21,7 +25,7 @@
#include "net/sock.h"
#include "c
onfig
.h"
#include "c
fgfile
.h"
#include "util.h"
#include "os.h"
#include "refbuf.h"
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment