Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
102
Issues
102
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
43953202
Commit
43953202
authored
Jul 21, 2003
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
22 changed files
with
97 additions
and
15 deletions
+97
-15
src/admin.c
src/admin.c
+5
-1
src/client.c
src/client.c
+4
-0
src/configtest.c
src/configtest.c
+5
-1
src/connection.c
src/connection.c
+5
-1
src/event.c
src/event.c
+5
-1
src/format.c
src/format.c
+4
-0
src/format_mp3.c
src/format_mp3.c
+4
-0
src/format_vorbis.c
src/format_vorbis.c
+4
-0
src/fserve.c
src/fserve.c
+5
-1
src/geturl.c
src/geturl.c
+5
-1
src/global.c
src/global.c
+4
-0
src/logging.c
src/logging.c
+5
-1
src/main.c
src/main.c
+5
-1
src/refbuf.c
src/refbuf.c
+4
-0
src/sighandler.c
src/sighandler.c
+4
-2
src/slave.c
src/slave.c
+5
-1
src/source.c
src/source.c
+5
-1
src/source.h
src/source.h
+1
-1
src/stats.c
src/stats.c
+4
-0
src/util.c
src/util.c
+5
-1
src/xslt.c
src/xslt.c
+4
-0
src/yp.c
src/yp.c
+5
-1
No files found.
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"
...
...
src/xslt.c
View file @
43953202
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <libxml/xmlmemory.h>
#include <libxml/debugXML.h>
...
...
src/yp.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"
#define CATMODULE "yp"
...
...
Write
Preview
Markdown
is supported
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