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
72fd0ad4
Commit
72fd0ad4
authored
Nov 22, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try IPv6 SSM if not defined
parent
e9d7d37c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
modules/misc/network/ipv6.c
modules/misc/network/ipv6.c
+4
-0
No files found.
modules/misc/network/ipv6.c
View file @
72fd0ad4
...
...
@@ -243,6 +243,7 @@ static int OpenUDP( vlc_object_t * p_this )
{
if
(
*
psz_server_addr
)
{
#ifdef MCAST_JOIN_SOURCE_GROUP
struct
group_source_req
imr
;
struct
sockaddr_in6
*
p_sin6
;
...
...
@@ -267,6 +268,9 @@ static int OpenUDP( vlc_object_t * p_this )
msg_Dbg
(
p_this
,
"MCAST_JOIN_SOURCE_GROUP multicast request"
);
if
(
setsockopt
(
i_handle
,
IPPROTO_IPV6
,
MCAST_JOIN_SOURCE_GROUP
,
(
char
*
)
&
imr
,
sizeof
(
struct
group_source_req
)
)
==
-
1
)
#else
errno
=
ENOSYS
;
#endif
{
msg_Err
(
p_this
,
"Source specific multicast failed (%s) -"
...
...
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