Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
52a74ce2
Commit
52a74ce2
authored
Sep 09, 2007
by
Rémi Denis-Courmont
Browse files
Cut & paste error
parent
980861af
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/network/udp.c
View file @
52a74ce2
...
...
@@ -877,10 +877,10 @@ int net_SetCSCov (int fd, int sendcov, int recvcov)
&
sendcov
,
sizeof
(
sendcov
)))
return
VLC_EGENERIC
;
if
((
send
cov
==
-
1
)
||
(
send
cov
>
56
))
send
cov
=
0
;
if
((
recv
cov
==
-
1
)
||
(
recv
cov
>
56
))
recv
cov
=
0
;
else
send
cov
=
(
send
cov
+
3
)
/
4
;
recv
cov
=
(
recv
cov
+
3
)
/
4
;
if
(
setsockopt
(
fd
,
SOL_DCCP
,
DCCP_SOCKOPT_RECV_CSCOV
,
&
recvcov
,
sizeof
(
recvcov
)))
return
VLC_EGENERIC
;
...
...
Write
Preview
Supports
Markdown
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