Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
94
Issues
94
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
059bfdc7
Commit
059bfdc7
authored
Jun 17, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup: Corrected headers used in code
parent
5c3e7760
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
19 additions
and
35 deletions
+19
-35
src/admin.c
src/admin.c
+2
-2
src/cfgfile.c
src/cfgfile.c
+2
-4
src/connection.c
src/connection.c
+2
-8
src/fserve.c
src/fserve.c
+2
-3
src/main.c
src/main.c
+0
-1
src/matchfile.c
src/matchfile.c
+2
-1
src/source.c
src/source.c
+2
-4
src/stats.c
src/stats.c
+1
-2
src/util.c
src/util.c
+2
-2
src/xslt.c
src/xslt.c
+1
-4
src/yp.c
src/yp.c
+1
-4
src/yp.h
src/yp.h
+2
-0
No files found.
src/admin.c
View file @
059bfdc7
...
...
@@ -23,6 +23,8 @@
#include <libxml/parser.h>
#include <libxml/tree.h>
#include "admin.h"
#include "compat.h"
#include "cfgfile.h"
#include "connection.h"
#include "refbuf.h"
...
...
@@ -30,10 +32,8 @@
#include "source.h"
#include "global.h"
#include "stats.h"
#include "compat.h"
#include "xslt.h"
#include "fserve.h"
#include "admin.h"
#include "errors.h"
#include "format.h"
...
...
src/cfgfile.c
View file @
059bfdc7
...
...
@@ -27,16 +27,13 @@
#include <libxml/parser.h>
#include "common/thread/thread.h"
#include "cfgfile.h"
#include "global.h"
#include "refbuf.h"
#include "client.h"
#include "logging.h"
#include "util.h"
#include "auth.h"
#include "event.h"
#include "tls.h"
#include "slave.h"
/* for config_reread_config() */
#include "yp.h"
...
...
@@ -44,6 +41,7 @@
#include "stats.h"
#include "connection.h"
#include "main.h"
#include "slave.h"
#define CATMODULE "CONFIG"
#define CONFIG_DEFAULT_LOCATION "Earth"
...
...
src/connection.c
View file @
059bfdc7
...
...
@@ -33,31 +33,25 @@
#include <winsock2.h>
#endif
#include "compat.h"
#include "common/thread/thread.h"
#include "common/avl/avl.h"
#include "common/net/sock.h"
#include "common/httpp/httpp.h"
#include "compat.h"
#include "connection.h"
#include "cfgfile.h"
#include "global.h"
#include "util.h"
#include "connection.h"
#include "refbuf.h"
#include "client.h"
#include "errors.h"
#include "stats.h"
#include "logging.h"
#include "xslt.h"
#include "fserve.h"
#include "slave.h"
#include "sighandler.h"
#include "yp.h"
#include "source.h"
#include "format.h"
#include "format_mp3.h"
#include "admin.h"
#include "auth.h"
#include "matchfile.h"
...
...
src/fserve.c
View file @
059bfdc7
...
...
@@ -47,6 +47,8 @@
#include "common/httpp/httpp.h"
#include "common/net/sock.h"
#include "fserve.h"
#include "compat.h"
#include "connection.h"
#include "global.h"
#include "refbuf.h"
...
...
@@ -58,9 +60,6 @@
#include "cfgfile.h"
#include "util.h"
#include "admin.h"
#include "compat.h"
#include "fserve.h"
#undef CATMODULE
#define CATMODULE "fserve"
...
...
src/main.c
View file @
059bfdc7
...
...
@@ -45,7 +45,6 @@
#endif
#include "common/thread/thread.h"
#include "common/avl/avl.h"
#include "common/net/sock.h"
#include "common/net/resolver.h"
#include "common/httpp/httpp.h"
...
...
src/matchfile.c
View file @
059bfdc7
...
...
@@ -19,10 +19,11 @@
#include <sys/stat.h>
#include <unistd.h>
#include "common/avl/avl.h"
#include "matchfile.h"
#include "logging.h"
#include "util.h"
/* for MAX_LINE_LEN and get_line() */
#include "common/avl/avl.h"
#define CATMODULE "matchfile"
struct
matchfile_tag
{
...
...
src/source.c
View file @
059bfdc7
...
...
@@ -42,8 +42,9 @@
#include "common/thread/thread.h"
#include "common/avl/avl.h"
#include "common/httpp/httpp.h"
#include "common/net/sock.h"
#include "source.h"
#include "compat.h"
#include "connection.h"
#include "global.h"
#include "refbuf.h"
...
...
@@ -53,13 +54,10 @@
#include "logging.h"
#include "cfgfile.h"
#include "util.h"
#include "source.h"
#include "format.h"
#include "fserve.h"
#include "auth.h"
#include "event.h"
#include "compat.h"
#include "connection.h"
#include "slave.h"
#include "acl.h"
...
...
src/stats.c
View file @
059bfdc7
...
...
@@ -30,14 +30,13 @@
#include "common/httpp/httpp.h"
#include "common/net/sock.h"
#include "stats.h"
#include "connection.h"
#include "source.h"
#include "global.h"
#include "refbuf.h"
#include "client.h"
#include "admin.h"
#include "stats.h"
#include "xslt.h"
#include "util.h"
#include "auth.h"
...
...
src/util.c
View file @
059bfdc7
...
...
@@ -41,12 +41,12 @@
#include "common/net/sock.h"
#include "common/thread/thread.h"
#include "
cfgfile
.h"
#include "
util
.h"
#include "compat.h"
#include "cfgfile.h"
#include "refbuf.h"
#include "connection.h"
#include "client.h"
#include "util.h"
#include "source.h"
#include "admin.h"
...
...
src/xslt.c
View file @
059bfdc7
...
...
@@ -46,13 +46,10 @@
#include "common/httpp/httpp.h"
#include "common/net/sock.h"
#include "connection.h"
#include "global.h"
#include "xslt.h"
#include "refbuf.h"
#include "client.h"
#include "errors.h"
#include "config.h"
#include "stats.h"
#include "fserve.h"
#include "util.h"
...
...
src/yp.c
View file @
059bfdc7
...
...
@@ -21,13 +21,10 @@
#include "common/thread/thread.h"
#include "yp.h"
#include "global.h"
#include "curl.h"
#include "connection.h"
#include "refbuf.h"
#include "client.h"
#include "logging.h"
#include "format.h"
#include "source.h"
#include "cfgfile.h"
#include "stats.h"
...
...
src/yp.h
View file @
059bfdc7
...
...
@@ -14,6 +14,8 @@
#ifndef __YP_H__
#define __YP_H__
#include "icecasttypes.h"
#define YP_SERVER_NAME 1
#define YP_SERVER_DESC 2
#define YP_SERVER_GENRE 3
...
...
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