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
f2d57a37
Commit
f2d57a37
authored
Mar 10, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32 compile fix
parent
9fdc8915
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+4
-3
No files found.
modules/stream_out/rtp.c
View file @
f2d57a37
...
...
@@ -1471,12 +1471,11 @@ static void* ThreadSend( vlc_object_t *p_this )
#ifdef WIN32
# define ECONNREFUSED WSAECONNREFUSED
# define ENOPROTOOPT WSAENOPROTOOPT
# define EPROTO WSAEPROTO
# define EHOSTUNREACH WSAEHOSTUNREACH
# define ENETUNREACH WSAE
HOS
TUNREACH
# define ENETUNREACH WSAE
NE
TUNREACH
# define ENETDOWN WSAENETDOWN
# define ENOBUFS WSAENOBUFS
# define EAGAIN WSAE
GAIN
# define EAGAIN WSAE
WOULDBLOCK
# define EWOULDBLOCK WSAEWOULDBLOCK
#endif
sout_stream_id_t
*
id
=
(
sout_stream_id_t
*
)
p_this
;
...
...
@@ -1532,7 +1531,9 @@ static void* ThreadSend( vlc_object_t *p_this )
/* Soft errors (e.g. ICMP): */
case
ECONNREFUSED
:
/* Port unreachable */
case
ENOPROTOOPT
:
#ifdef EPROTO
case
EPROTO
:
/* Protocol unreachable */
#endif
case
EHOSTUNREACH
:
/* Host unreachable */
case
ENETUNREACH
:
/* Network unreachable */
case
ENETDOWN
:
/* Entire network down */
...
...
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