Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2b9cd1e7
Commit
2b9cd1e7
authored
Jun 22, 2008
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reindent
Originally committed as revision 13860 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d2a1ea1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
ffserver.c
ffserver.c
+19
-19
No files found.
ffserver.c
View file @
2b9cd1e7
...
@@ -518,15 +518,15 @@ static int http_server(void)
...
@@ -518,15 +518,15 @@ static int http_server(void)
HTTPContext
*
c
,
*
c_next
;
HTTPContext
*
c
,
*
c_next
;
if
(
my_http_addr
.
sin_port
)
{
if
(
my_http_addr
.
sin_port
)
{
server_fd
=
socket_open_listen
(
&
my_http_addr
);
server_fd
=
socket_open_listen
(
&
my_http_addr
);
if
(
server_fd
<
0
)
if
(
server_fd
<
0
)
return
-
1
;
return
-
1
;
}
}
if
(
my_rtsp_addr
.
sin_port
)
{
if
(
my_rtsp_addr
.
sin_port
)
{
rtsp_server_fd
=
socket_open_listen
(
&
my_rtsp_addr
);
rtsp_server_fd
=
socket_open_listen
(
&
my_rtsp_addr
);
if
(
rtsp_server_fd
<
0
)
if
(
rtsp_server_fd
<
0
)
return
-
1
;
return
-
1
;
}
}
if
(
!
rtsp_server_fd
&&
!
server_fd
)
{
if
(
!
rtsp_server_fd
&&
!
server_fd
)
{
...
@@ -546,14 +546,14 @@ static int http_server(void)
...
@@ -546,14 +546,14 @@ static int http_server(void)
for
(;;)
{
for
(;;)
{
poll_entry
=
poll_table
;
poll_entry
=
poll_table
;
if
(
server_fd
)
{
if
(
server_fd
)
{
poll_entry
->
fd
=
server_fd
;
poll_entry
->
fd
=
server_fd
;
poll_entry
->
events
=
POLLIN
;
poll_entry
->
events
=
POLLIN
;
poll_entry
++
;
poll_entry
++
;
}
}
if
(
rtsp_server_fd
)
{
if
(
rtsp_server_fd
)
{
poll_entry
->
fd
=
rtsp_server_fd
;
poll_entry
->
fd
=
rtsp_server_fd
;
poll_entry
->
events
=
POLLIN
;
poll_entry
->
events
=
POLLIN
;
poll_entry
++
;
poll_entry
++
;
}
}
/* wait for events on each HTTP handle */
/* wait for events on each HTTP handle */
...
@@ -634,15 +634,15 @@ static int http_server(void)
...
@@ -634,15 +634,15 @@ static int http_server(void)
poll_entry
=
poll_table
;
poll_entry
=
poll_table
;
if
(
server_fd
)
{
if
(
server_fd
)
{
/* new HTTP connection request ? */
/* new HTTP connection request ? */
if
(
poll_entry
->
revents
&
POLLIN
)
if
(
poll_entry
->
revents
&
POLLIN
)
new_connection
(
server_fd
,
0
);
new_connection
(
server_fd
,
0
);
poll_entry
++
;
poll_entry
++
;
}
}
if
(
rtsp_server_fd
)
{
if
(
rtsp_server_fd
)
{
/* new RTSP connection request ? */
/* new RTSP connection request ? */
if
(
poll_entry
->
revents
&
POLLIN
)
if
(
poll_entry
->
revents
&
POLLIN
)
new_connection
(
rtsp_server_fd
,
1
);
new_connection
(
rtsp_server_fd
,
1
);
}
}
}
}
}
}
...
...
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