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
e70a1a42
Commit
e70a1a42
authored
Sep 19, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixup DCCP include ordering
parent
0ae73f10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/network/udp.c
src/network/udp.c
+8
-8
No files found.
src/network/udp.c
View file @
e70a1a42
...
...
@@ -53,6 +53,13 @@
# endif
#endif
#ifdef HAVE_LINUX_DCCP_H
# include <linux/dccp.h>
# ifndef SOCK_DCCP
/* provisional API */
# define SOCK_DCCP 6
# endif
#endif
#ifndef SOL_IP
# define SOL_IP IPPROTO_IP
#endif
...
...
@@ -75,13 +82,6 @@
# define IPPROTO_UDPLITE 136
/* IANA */
#endif
#ifdef HAVE_LINUX_DCCP_H
# include <linux/dccp.h>
# ifndef SOCK_DCCP
/* provisional API */
# define SOCK_DCCP 6
# endif
#endif
#if defined (HAVE_NETINET_UDPLITE_H)
# include <netinet/udplite.h>
#elif defined (__linux__)
...
...
@@ -379,7 +379,7 @@ net_IPv6Join (vlc_object_t *obj, int fd, const struct sockaddr_in6 *src)
msg_Dbg
(
obj
,
"IPV6_JOIN_GROUP multicast request"
);
if
(
!
setsockopt
(
fd
,
IPPROTO
_IPV6
,
IPV6_JOIN_GROUP
,
&
gr6
,
sizeof
(
gr6
)))
if
(
!
setsockopt
(
fd
,
SOL
_IPV6
,
IPV6_JOIN_GROUP
,
&
gr6
,
sizeof
(
gr6
)))
return
0
;
#else
errno
=
ENOSYS
;
...
...
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