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
d0ef4bd7
Commit
d0ef4bd7
authored
Feb 20, 2014
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httpd: remove commented out debug code
parent
8deea329
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
42 deletions
+0
-42
src/network/httpd.c
src/network/httpd.c
+0
-42
No files found.
src/network/httpd.c
View file @
d0ef4bd7
...
@@ -671,14 +671,8 @@ static int httpd_StreamCallBack( httpd_callback_sys_t *p_sys,
...
@@ -671,14 +671,8 @@ static int httpd_StreamCallBack( httpd_callback_sys_t *p_sys,
int64_t
i_write
;
int64_t
i_write
;
int
i_pos
;
int
i_pos
;
#if 0
fprintf( stderr, "httpd_StreamCallBack i_body_offset=%lld\n",
answer->i_body_offset );
#endif
if
(
answer
->
i_body_offset
>=
stream
->
i_buffer_pos
)
if
(
answer
->
i_body_offset
>=
stream
->
i_buffer_pos
)
{
{
/* fprintf( stderr, "httpd_StreamCallBack: no data\n" ); */
return
VLC_EGENERIC
;
/* wait, no data available */
return
VLC_EGENERIC
;
/* wait, no data available */
}
}
if
(
cl
->
i_keyframe_wait_to_pass
>=
0
)
if
(
cl
->
i_keyframe_wait_to_pass
>=
0
)
...
@@ -695,10 +689,6 @@ static int httpd_StreamCallBack( httpd_callback_sys_t *p_sys,
...
@@ -695,10 +689,6 @@ static int httpd_StreamCallBack( httpd_callback_sys_t *p_sys,
stream
->
i_buffer_pos
)
stream
->
i_buffer_pos
)
{
{
/* this client isn't fast enough */
/* this client isn't fast enough */
#if 0
fprintf( stderr, "fixing i_body_offset (old=%lld new=%lld)\n",
answer->i_body_offset, stream->i_buffer_last_pos );
#endif
answer
->
i_body_offset
=
stream
->
i_buffer_last_pos
;
answer
->
i_body_offset
=
stream
->
i_buffer_last_pos
;
}
}
...
@@ -1637,8 +1627,6 @@ static void httpd_ClientRecv( httpd_client_t *cl )
...
@@ -1637,8 +1627,6 @@ static void httpd_ClientRecv( httpd_client_t *cl )
p
=
NULL
;
p
=
NULL
;
cl
->
query
.
i_type
=
HTTPD_MSG_NONE
;
cl
->
query
.
i_type
=
HTTPD_MSG_NONE
;
/*fprintf( stderr, "received new request=%s\n", cl->p_buffer);*/
for
(
i
=
0
;
msg_type
[
i
].
name
[
0
];
i
++
)
for
(
i
=
0
;
msg_type
[
i
].
name
[
0
];
i
++
)
{
{
if
(
!
strncmp
(
(
char
*
)
cl
->
p_buffer
,
msg_type
[
i
].
name
,
if
(
!
strncmp
(
(
char
*
)
cl
->
p_buffer
,
msg_type
[
i
].
name
,
...
@@ -1818,33 +1806,6 @@ static void httpd_ClientRecv( httpd_client_t *cl )
...
@@ -1818,33 +1806,6 @@ static void httpd_ClientRecv( httpd_client_t *cl )
/* XXX: for QT I have to disable timeout. Try to find why */
/* XXX: for QT I have to disable timeout. Try to find why */
if
(
cl
->
query
.
i_proto
==
HTTPD_PROTO_RTSP
)
if
(
cl
->
query
.
i_proto
==
HTTPD_PROTO_RTSP
)
cl
->
i_activity_timeout
=
0
;
cl
->
i_activity_timeout
=
0
;
#if 0 /* Debugging only */
if( cl->i_state == HTTPD_CLIENT_RECEIVE_DONE )
{
int i;
fprintf( stderr, "received new request\n" );
fprintf( stderr, " - proto=%s\n",
cl->query.i_proto == HTTPD_PROTO_HTTP ? "HTTP" : "RTSP" );
fprintf( stderr, " - version=%d\n", cl->query.i_version );
fprintf( stderr, " - msg=%d\n", cl->query.i_type );
if( cl->query.i_type == HTTPD_MSG_ANSWER )
{
fprintf( stderr, " - answer=%d '%s'\n", cl->query.i_status,
cl->query.psz_status );
}
else if( cl->query.i_type != HTTPD_MSG_NONE )
{
fprintf( stderr, " - url=%s\n", cl->query.psz_url );
}
for( i = 0; i < cl->query.i_name; i++ )
{
fprintf( stderr, " - option name='%s' value='%s'\n",
cl->query.name[i], cl->query.value[i] );
}
}
#endif
}
}
static
void
httpd_ClientSend
(
httpd_client_t
*
cl
)
static
void
httpd_ClientSend
(
httpd_client_t
*
cl
)
...
@@ -1887,9 +1848,6 @@ static void httpd_ClientSend( httpd_client_t *cl )
...
@@ -1887,9 +1848,6 @@ static void httpd_ClientSend( httpd_client_t *cl )
cl
->
i_buffer
=
0
;
cl
->
i_buffer
=
0
;
cl
->
i_buffer_size
=
(
uint8_t
*
)
p
-
cl
->
p_buffer
;
cl
->
i_buffer_size
=
(
uint8_t
*
)
p
-
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
],
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