Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
5f9fc1ca
Commit
5f9fc1ca
authored
Aug 06, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic: socket(AF_ -> socket(PF_
parent
aa55637b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
modules/access/eyetv.m
modules/access/eyetv.m
+1
-1
modules/control/rc.c
modules/control/rc.c
+3
-3
src/extras/libc.c
src/extras/libc.c
+1
-1
No files found.
modules/access/eyetv.m
View file @
5f9fc1ca
...
...
@@ -187,7 +187,7 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
publicSock
=
socket
(
A
F_UNIX
,
SOCK_STREAM
,
0
);
publicSock
=
socket
(
P
F_UNIX
,
SOCK_STREAM
,
0
);
if
(
publicSock
==
-
1
)
{
msg_Err
(
p_access
,
"create local socket failed (errno=%d)"
,
errno
);
...
...
modules/control/rc.c
View file @
5f9fc1ca
...
...
@@ -59,8 +59,8 @@
#include <vlc_charset.h>
#if defined(
AF_UNIX) && !defined(A
F_LOCAL)
# define
AF_LOCAL A
F_UNIX
#if defined(
PF_UNIX) && !defined(P
F_LOCAL)
# define
PF_LOCAL P
F_UNIX
#endif
#if defined(AF_LOCAL) && ! defined(WIN32)
...
...
@@ -246,7 +246,7 @@ static int Activate( vlc_object_t *p_this )
msg_Dbg
(
p_intf
,
"trying UNIX socket"
);
if
(
(
i_socket
=
socket
(
A
F_LOCAL
,
SOCK_STREAM
,
0
)
)
<
0
)
if
(
(
i_socket
=
socket
(
P
F_LOCAL
,
SOCK_STREAM
,
0
)
)
<
0
)
{
msg_Warn
(
p_intf
,
"can't open socket: %m"
);
free
(
psz_unix_path
);
...
...
src/extras/libc.c
View file @
5f9fc1ca
...
...
@@ -306,7 +306,7 @@ int __vlc_execve( vlc_object_t *p_object, int i_argc, char *const *ppsz_argv,
# define BUFSIZE 1024
int
fds
[
2
],
i_status
;
if
(
socketpair
(
A
F_LOCAL
,
SOCK_STREAM
,
0
,
fds
))
if
(
socketpair
(
P
F_LOCAL
,
SOCK_STREAM
,
0
,
fds
))
return
-
1
;
pid_t
pid
=
-
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