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
eb1988c9
Commit
eb1988c9
authored
Mar 31, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use vlc_socket()
parent
3eb3e72a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
19 deletions
+6
-19
src/network/io.c
src/network/io.c
+6
-19
No files found.
src/network/io.c
View file @
eb1988c9
...
...
@@ -52,6 +52,7 @@
#endif
#include <vlc_network.h>
#include <vlc_fs.h>
#ifndef INADDR_ANY
# define INADDR_ANY 0x00000000
...
...
@@ -93,26 +94,12 @@ int net_SetupSocket (int fd)
int
net_Socket
(
vlc_object_t
*
p_this
,
int
family
,
int
socktype
,
int
protocol
)
{
int
fd
;
#ifdef SOCK_CLOEXEC
fd
=
socket
(
family
,
socktype
|
SOCK_NONBLOCK
|
SOCK_CLOEXEC
,
protocol
);
if
(
fd
==
-
1
&&
errno
==
EINVAL
)
#endif
int
fd
=
vlc_socket
(
family
,
socktype
,
protocol
,
true
);
if
(
fd
==
-
1
)
{
fd
=
socket
(
family
,
socktype
,
protocol
);
if
(
fd
==
-
1
)
{
if
(
net_errno
!=
EAFNOSUPPORT
)
msg_Err
(
p_this
,
"cannot create socket: %m"
);
return
-
1
;
}
#ifndef WIN32
fcntl
(
fd
,
F_SETFD
,
FD_CLOEXEC
);
fcntl
(
fd
,
F_SETFL
,
fcntl
(
fd
,
F_GETFL
,
0
)
|
O_NONBLOCK
);
#else
ioctlsocket
(
fd
,
FIONBIO
,
&
(
unsigned
long
){
1
});
#endif
if
(
net_errno
!=
EAFNOSUPPORT
)
msg_Err
(
p_this
,
"cannot create socket: %m"
);
return
-
1
;
}
setsockopt
(
fd
,
SOL_SOCKET
,
SO_REUSEADDR
,
&
(
int
){
1
},
sizeof
(
int
));
...
...
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