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
331df5b8
Commit
331df5b8
authored
Aug 21, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix previous commit
parent
a92c4fff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+1
-1
src/network/httpd.c
src/network/httpd.c
+1
-6
No files found.
modules/stream_out/rtp.c
View file @
331df5b8
...
...
@@ -1735,7 +1735,7 @@ static int RtspCallback( httpd_callback_sys_t *p_args,
httpd_MsgAdd
(
answer
,
"Server"
,
PACKAGE_STRING
);
httpd_MsgAdd
(
answer
,
"Content-Length"
,
"%d"
,
answer
->
i_body
);
psz_cseq
=
httpd_MsgGet
(
query
,
"Cseq"
);
httpd_MsgAdd
(
answer
,
"Cseq"
,
"%
u
"
,
psz_cseq
?
psz_cseq
:
"0"
);
httpd_MsgAdd
(
answer
,
"Cseq"
,
"%
s
"
,
psz_cseq
?
psz_cseq
:
"0"
);
httpd_MsgAdd
(
answer
,
"Cache-Control"
,
"%s"
,
"no-cache"
);
if
(
psz_session
)
...
...
src/network/httpd.c
View file @
331df5b8
...
...
@@ -2035,7 +2035,6 @@ static void httpd_HostThread( httpd_host_t *host )
else
if
(
i_msg
==
HTTPD_MSG_OPTIONS
)
{
const
char
*
psz_cseq
;
int
i_cseq
;
/* unimplemented */
answer
->
i_proto
=
query
->
i_proto
;
...
...
@@ -2047,11 +2046,7 @@ static void httpd_HostThread( httpd_host_t *host )
answer
->
p_body
=
NULL
;
psz_cseq
=
httpd_MsgGet
(
query
,
"Cseq"
);
if
(
psz_cseq
)
i_cseq
=
atoi
(
psz_cseq
);
else
i_cseq
=
0
;
httpd_MsgAdd
(
answer
,
"Cseq"
,
"%d"
,
i_cseq
);
httpd_MsgAdd
(
answer
,
"Cseq"
,
"%s"
,
psz_cseq
?
psz_cseq
:
"0"
);
httpd_MsgAdd
(
answer
,
"Server"
,
"VLC Server"
);
httpd_MsgAdd
(
answer
,
"Public"
,
"DESCRIBE, SETUP, "
"TEARDOWN, PLAY, PAUSE"
);
...
...
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