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
f1d39a87
Commit
f1d39a87
authored
May 31, 2005
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
send response header to stats client
svn path=/icecast/trunk/icecast/; revision=9330
parent
79adab01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/connection.c
src/connection.c
+7
-1
No files found.
src/connection.c
View file @
f1d39a87
...
...
@@ -746,7 +746,13 @@ static void _handle_stats_request (client_t *client, char *uri)
return
;
}
stats_event_inc
(
NULL
,
"stats"
);
client
->
respcode
=
200
;
if
(
sock_write
(
client
->
con
->
sock
,
"HTTP/1.0 200 OK
\r\n\r\n
"
)
<
19
)
{
client_destroy
(
client
);
ERROR0
(
"failed to write header"
);
return
;
}
thread_create
(
"Stats Connection"
,
stats_connection
,
(
void
*
)
client
,
THREAD_DETACHED
);
}
...
...
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