Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
953c8585
Commit
953c8585
authored
May 12, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debug messages in httpd
parent
1a559bd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/misc/httpd.c
src/misc/httpd.c
+6
-6
No files found.
src/misc/httpd.c
View file @
953c8585
...
...
@@ -1600,7 +1600,7 @@ static void httpd_ClientRecv( httpd_client_t *cl )
if
(
cl
->
i_buffer
>=
4
)
{
fprintf
(
stderr
,
"peek=%4.4s
\n
"
,
cl
->
p_buffer
);
/*fprintf( stderr, "peek=%4.4s\n", cl->p_buffer );*/
/* detect type */
if
(
cl
->
p_buffer
[
0
]
==
'$'
)
{
...
...
@@ -1714,7 +1714,7 @@ static void httpd_ClientRecv( httpd_client_t *cl )
p
=
NULL
;
cl
->
query
.
i_type
=
HTTPD_MSG_NONE
;
fprintf
(
stderr
,
"received new request=%s
\n
"
,
cl
->
p_buffer
);
/*fprintf( stderr, "received new request=%s\n", cl->p_buffer);*/
for
(
i
=
0
;
msg_type
[
i
].
name
!=
NULL
;
i
++
)
{
...
...
@@ -1886,7 +1886,7 @@ static void httpd_ClientRecv( httpd_client_t *cl )
cl
->
i_activity_timeout
=
0
;
/* Debugging only */
if
(
cl
->
i_state
==
HTTPD_CLIENT_RECEIVE_DONE
)
/*
if( cl->i_state == HTTPD_CLIENT_RECEIVE_DONE )
{
int i;
...
...
@@ -1909,7 +1909,7 @@ static void httpd_ClientRecv( httpd_client_t *cl )
fprintf( stderr, " - option name='%s' value='%s'\n",
cl->query.name[i], cl->query.value[i] );
}
}
}
*/
}
...
...
@@ -1954,8 +1954,8 @@ static void httpd_ClientSend( httpd_client_t *cl )
cl
->
i_buffer
=
0
;
cl
->
i_buffer_size
=
(
uint8_t
*
)
p
-
cl
->
p_buffer
;
fprintf
(
stderr
,
"sending answer
\n
"
);
fprintf
(
stderr
,
"%s"
,
cl
->
p_buffer
);
/*
fprintf( stderr, "sending answer\n" );
fprintf( stderr, "%s", cl->p_buffer );
*/
}
i_len
=
httpd_NetSend
(
cl
,
&
cl
->
p_buffer
[
cl
->
i_buffer
],
...
...
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