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
8654a18f
Commit
8654a18f
authored
Jul 23, 2003
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor cleanups
svn path=/trunk/icecast/; revision=5168
parent
686bac60
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
5 deletions
+12
-5
conf/Makefile.am
conf/Makefile.am
+1
-0
src/cfgfile.h
src/cfgfile.h
+3
-3
src/connection.c
src/connection.c
+2
-2
src/format.c
src/format.c
+3
-0
src/format_mp3.c
src/format_mp3.c
+3
-0
No files found.
conf/Makefile.am
View file @
8654a18f
...
...
@@ -3,6 +3,7 @@
AUTOMAKE_OPTIONS
=
foreign
EXTRA_DIST
=
icecast.xml.in
DISTCLEANFILES
=
icecast.xml.dist
docdir
=
$(datadir)
/
$(PACKAGE)
/doc
doc_DATA
=
icecast.xml.dist
...
...
src/cfgfile.h
View file @
8654a18f
#ifndef __C
ONFIG
_H__
#define __C
ONFIG
_H__
#ifndef __C
FGFILE
_H__
#define __C
FGFILE
_H__
#define CONFIG_EINSANE -1
#define CONFIG_ENOROOT -2
...
...
@@ -138,7 +138,7 @@ void config_release_config(void);
/* To be used ONLY in one-time startup code */
ice_config_t
*
config_get_config_unlocked
(
void
);
#endif
/* __C
ONFIG
_H__ */
#endif
/* __C
FGFILE
_H__ */
src/connection.c
View file @
8654a18f
...
...
@@ -673,8 +673,8 @@ static void _handle_get_request(connection_t *con,
char
*
host
;
int
port
;
int
i
;
char
*
serverhost
;
int
serverport
;
char
*
serverhost
=
NULL
;
int
serverport
=
0
;
aliases
*
alias
;
ice_config_t
*
config
;
int
client_limit
;
...
...
src/format.c
View file @
8654a18f
...
...
@@ -11,6 +11,9 @@
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <time.h>
#include "connection.h"
...
...
src/format_mp3.c
View file @
8654a18f
...
...
@@ -12,6 +12,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include "refbuf.h"
#include "source.h"
...
...
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