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
bfa8fe76
Commit
bfa8fe76
authored
Aug 02, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/misc/network/ipv4.c: do a var_Get() on "ttl" + small clean-up.
parent
06114cbe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
15 deletions
+27
-15
modules/misc/network/ipv4.c
modules/misc/network/ipv4.c
+27
-15
No files found.
modules/misc/network/ipv4.c
View file @
bfa8fe76
...
@@ -410,35 +410,44 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
...
@@ -410,35 +410,44 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
{
{
/* set the time-to-live */
/* set the time-to-live */
int
i_ttl
=
p_socket
->
i_ttl
;
int
i_ttl
=
p_socket
->
i_ttl
;
unsigned
char
ttl
;
unsigned
char
ttl
;
if
(
i_ttl
<
1
)
if
(
i_ttl
<
1
)
{
{
i_ttl
=
config_GetInt
(
p_this
,
"i_ttl"
);
if
(
var_Get
(
p_this
,
"ttl"
,
&
val
)
!=
VLC_SUCCESS
)
{
var_Create
(
p_this
,
"ttl"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_this
,
"ttl"
,
&
val
);
}
i_ttl
=
val
.
i_int
;
}
}
if
(
i_ttl
<
1
)
i_ttl
=
1
;
if
(
i_ttl
<
1
)
i_ttl
=
1
;
ttl
=
(
unsigned
char
)
i_ttl
;
ttl
=
(
unsigned
char
)
i_ttl
;
/* There is some confusion in the world whether IP_MULTICAST_TTL
/* There is some confusion in the world whether IP_MULTICAST_TTL
* takes a byte or an int as an argument. BSD seems to indicate byte
* takes a byte or an int as an argument.
* so we are going with that and use int as a fallback to be safe */
* BSD seems to indicate byte so we are going with that and use
* int as a fallback to be safe */
if
(
setsockopt
(
i_handle
,
IPPROTO_IP
,
IP_MULTICAST_TTL
,
if
(
setsockopt
(
i_handle
,
IPPROTO_IP
,
IP_MULTICAST_TTL
,
&
ttl
,
sizeof
(
ttl
)
)
<
0
)
&
ttl
,
sizeof
(
ttl
)
)
<
0
)
{
{
#ifdef HAVE_ERRNO_H
#ifdef HAVE_ERRNO_H
msg_Dbg
(
p_this
,
"failed to set ttl (%s). Let's try it the integer way."
,
strerror
(
errno
)
);
msg_Dbg
(
p_this
,
"failed to set ttl (%s). Let's try it "
"the integer way."
,
strerror
(
errno
)
);
#endif
#endif
if
(
setsockopt
(
i_handle
,
IPPROTO_IP
,
IP_MULTICAST_TTL
,
if
(
setsockopt
(
i_handle
,
IPPROTO_IP
,
IP_MULTICAST_TTL
,
&
i_ttl
,
sizeof
(
i_ttl
)
)
<
0
)
&
i_ttl
,
sizeof
(
i_ttl
)
)
<
0
)
{
{
#ifdef HAVE_ERRNO_H
#ifdef HAVE_ERRNO_H
msg_Err
(
p_this
,
"failed to set ttl (%s)"
,
strerror
(
errno
)
);
msg_Err
(
p_this
,
"failed to set ttl (%s)"
,
strerror
(
errno
)
);
#else
#else
msg_Err
(
p_this
,
"failed to set ttl"
);
msg_Err
(
p_this
,
"failed to set ttl"
);
#endif
#endif
close
(
i_handle
);
close
(
i_handle
);
return
(
-
1
);
return
(
-
1
);
}
}
}
}
}
}
#endif
#endif
...
@@ -446,8 +455,11 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
...
@@ -446,8 +455,11 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
p_socket
->
i_handle
=
i_handle
;
p_socket
->
i_handle
=
i_handle
;
var_Create
(
p_this
,
"mtu"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
if
(
var_Get
(
p_this
,
"mtu"
,
&
val
)
!=
VLC_SUCCESS
)
var_Get
(
p_this
,
"mtu"
,
&
val
);
{
var_Create
(
p_this
,
"mtu"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_this
,
"mtu"
,
&
val
);
}
p_socket
->
i_mtu
=
val
.
i_int
;
p_socket
->
i_mtu
=
val
.
i_int
;
return
(
0
);
return
(
0
);
}
}
...
@@ -543,12 +555,12 @@ static int OpenTCP( vlc_object_t * p_this, network_socket_t * p_socket )
...
@@ -543,12 +555,12 @@ static int OpenTCP( vlc_object_t * p_this, network_socket_t * p_socket )
vlc_value_t
val
;
vlc_value_t
val
;
fd_set
fds
;
fd_set
fds
;
if
(
!
var_Type
(
p_this
,
"ipv4-timeout"
)
)
if
(
var_Get
(
p_this
,
"ipv4-timeout"
,
&
val
)
!=
VLC_SUCCESS
)
{
{
var_Create
(
p_this
,
"ipv4-timeout"
,
var_Create
(
p_this
,
"ipv4-timeout"
,
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
VLC_VAR_INTEGER
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_this
,
"ipv4-timeout"
,
&
val
);
}
}
var_Get
(
p_this
,
"ipv4-timeout"
,
&
val
);
i_max_count
=
val
.
i_int
*
1000
/
100000
/* timeout.tv_usec */
;
i_max_count
=
val
.
i_int
*
1000
/
100000
/* timeout.tv_usec */
;
msg_Dbg
(
p_this
,
"connection in progress"
);
msg_Dbg
(
p_this
,
"connection in progress"
);
...
...
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