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
f0e7a859
Commit
f0e7a859
authored
Dec 18, 2004
by
Karl Heyes
Browse files
minor type cleanup in fserve, include correct header for ogg
svn path=/icecast/trunk/icecast/; revision=8481
parent
e59095b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/format.c
View file @
f0e7a859
...
...
@@ -36,7 +36,7 @@
#include
"global.h"
#include
"httpp/httpp.h"
#include
"format_
vorbis
.h"
#include
"format_
ogg
.h"
#include
"format_mp3.h"
#include
"logging.h"
...
...
src/fserve.c
View file @
f0e7a859
...
...
@@ -88,7 +88,7 @@ typedef struct {
static
int
_free_client
(
void
*
key
);
static
int
_delete_mapping
(
void
*
mapping
);
static
void
*
fserv_thread_function
(
void
*
arg
);
static
void
create_mime_mappings
(
char
*
fn
);
static
void
create_mime_mappings
(
const
char
*
fn
);
void
fserve_initialize
(
void
)
{
...
...
@@ -314,7 +314,7 @@ static void *fserv_thread_function(void *arg)
return
NULL
;
}
static
char
*
fserve_content_type
(
char
*
path
)
static
const
char
*
fserve_content_type
(
char
*
path
)
{
char
*
ext
=
util_get_extension
(
path
);
mime_type
exttype
=
{
ext
,
NULL
};
...
...
@@ -528,7 +528,7 @@ static int _compare_mappings(void *arg, void *a, void *b)
((
mime_type
*
)
b
)
->
ext
);
}
static
void
create_mime_mappings
(
char
*
fn
)
{
static
void
create_mime_mappings
(
const
char
*
fn
)
{
FILE
*
mimefile
=
fopen
(
fn
,
"r"
);
char
line
[
4096
];
char
*
type
,
*
ext
,
*
cur
;
...
...
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