Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
52a74ce2
Commit
52a74ce2
authored
Sep 09, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cut & paste error
parent
980861af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/network/udp.c
src/network/udp.c
+3
-3
No files found.
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
((
sendcov
==
-
1
)
||
(
send
cov
>
56
))
send
cov
=
0
;
if
((
recvcov
==
-
1
)
||
(
recv
cov
>
56
))
recv
cov
=
0
;
else
sendcov
=
(
send
cov
+
3
)
/
4
;
recvcov
=
(
recv
cov
+
3
)
/
4
;
if
(
setsockopt
(
fd
,
SOL_DCCP
,
DCCP_SOCKOPT_RECV_CSCOV
,
&
recvcov
,
sizeof
(
recvcov
)))
return
VLC_EGENERIC
;
...
...
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