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
b3248bd5
Commit
b3248bd5
authored
Nov 12, 2001
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed the vlcs communication for real now.
parent
cdf12612
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
src/misc/netutils.c
src/misc/netutils.c
+11
-1
No files found.
src/misc/netutils.c
View file @
b3248bd5
...
...
@@ -2,7 +2,7 @@
* netutils.c: various network functions
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: netutils.c,v 1.4
3 2001/11/12 22:42:56
sam Exp $
* $Id: netutils.c,v 1.4
4 2001/11/12 23:56:53
sam Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Benoit Steiner <benny@via.ecp.fr>
...
...
@@ -295,6 +295,16 @@ int network_ChannelJoin( int i_channel )
return
-
1
;
}
i_dummy
=
1
;
if
(
setsockopt
(
i_fd
,
SOL_SOCKET
,
SO_REUSEADDR
,
(
void
*
)
&
i_dummy
,
sizeof
(
i_dummy
)
)
==
-
1
)
{
intf_ErrMsg
(
"network error: can't SO_REUSEADDR vlcs socket (%s)"
,
strerror
(
errno
));
close
(
i_fd
);
return
-
1
;
}
/* Getting information about the channel server */
psz_vlcs
=
main_GetPszVariable
(
INPUT_CHANNEL_SERVER_VAR
,
INPUT_CHANNEL_SERVER_DEFAULT
);
...
...
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