Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c07085a9
Commit
c07085a9
authored
Sep 08, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reallow file descriptor above FD_SETSIZE since we now use poll()
parent
ad3d32f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
15 deletions
+0
-15
src/network/io.c
src/network/io.c
+0
-8
src/network/tcp.c
src/network/tcp.c
+0
-7
No files found.
src/network/io.c
View file @
c07085a9
...
...
@@ -79,14 +79,6 @@ int net_Socket( vlc_object_t *p_this, int i_family, int i_socktype,
msg_Err
(
p_this
,
"cannot set socket to non-blocking mode"
);
}
#else
if
(
fd
>=
FD_SETSIZE
)
{
/* We don't want to overflow select() fd_set */
msg_Err
(
p_this
,
"cannot create socket (too many already in use)"
);
net_Close
(
fd
);
return
-
1
;
}
fcntl
(
fd
,
F_SETFD
,
FD_CLOEXEC
);
i_val
=
fcntl
(
fd
,
F_GETFL
,
0
);
fcntl
(
fd
,
F_SETFL
,
((
i_val
!=
-
1
)
?
i_val
:
0
)
|
O_NONBLOCK
);
...
...
src/network/tcp.c
View file @
c07085a9
...
...
@@ -416,13 +416,6 @@ int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
if
(
i_val
<
0
)
msg_Err
(
p_this
,
"accept failed (%s)"
,
net_strerror
(
net_errno
)
);
#ifndef WIN32
else
if
(
i_val
>=
FD_SETSIZE
)
{
net_Close
(
i_val
);
/* avoid future overflows in FD_SET */
msg_Err
(
p_this
,
"accept failed (too many sockets opened)"
);
}
#endif
else
{
const
int
yes
=
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