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
56f453f7
Commit
56f453f7
authored
Sep 22, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/misc/getaddrinfo.c: WinCE implementation + ipv6 support (not tested).
parent
bfbe106f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
src/misc/getaddrinfo.c
src/misc/getaddrinfo.c
+8
-9
No files found.
src/misc/getaddrinfo.c
View file @
56f453f7
...
...
@@ -487,7 +487,7 @@ int vlc_getnameinfo( const struct sockaddr *sa, int salen,
{
char
psz_servbuf
[
6
],
*
psz_serv
;
int
i_servlen
,
i_val
;
#if
def WIN32
#if
defined( WIN32 ) && !defined( UNDER_CE )
/*
* Here is the kind of kludge you need to keep binary compatibility among
* varying OS versions...
...
...
@@ -509,7 +509,7 @@ int vlc_getnameinfo( const struct sockaddr *sa, int salen,
psz_serv
=
NULL
;
i_servlen
=
0
;
}
#if
def WIN32
#if
defined( WIN32 ) && !defined( UNDER_CE )
wship6_module
=
LoadLibrary
(
"wship6.dll"
);
if
(
wship6_module
!=
NULL
)
{
...
...
@@ -530,9 +530,8 @@ int vlc_getnameinfo( const struct sockaddr *sa, int salen,
FreeLibrary
(
wship6_module
);
}
#endif
#if HAVE_GETNAMEINFO
i_val
=
getnameinfo
(
sa
,
salen
,
host
,
hostlen
,
psz_serv
,
i_servlen
,
flags
);
#if defined( HAVE_GETNAMEINFO ) || defined( UNDER_CE )
i_val
=
getnameinfo
(
sa
,
salen
,
host
,
hostlen
,
psz_serv
,
i_servlen
,
flags
);
#else
{
# ifdef HAVE_USABLE_MUTEX_THAT_DONT_NEED_LIBVLC_POINTER
...
...
@@ -632,7 +631,7 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
}
}
#if
def WIN32
#if
defined( WIN32 ) && !defined( UNDER_CE )
{
typedef
int
(
CALLBACK
*
GETADDRINFO
)
(
const
char
*
,
const
char
*
,
const
struct
addrinfo
*
,
...
...
@@ -659,7 +658,7 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
}
}
#endif
#if
HAVE_GETADDRINFO
#if
defined( HAVE_GETADDRINFO ) || defined( UNDER_CE )
return
getaddrinfo
(
psz_node
,
psz_service
,
&
hints
,
res
);
#else
{
...
...
@@ -681,7 +680,7 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
void
vlc_freeaddrinfo
(
struct
addrinfo
*
infos
)
{
#if
def WIN32
#if
defined( WIN32 ) && !defined( UNDER_CE )
typedef
void
(
CALLBACK
*
FREEADDRINFO
)
(
struct
addrinfo
*
);
HINSTANCE
wship6_module
;
FREEADDRINFO
ws2_freeaddrinfo
;
...
...
@@ -706,7 +705,7 @@ void vlc_freeaddrinfo( struct addrinfo *infos )
FreeLibrary
(
wship6_module
);
}
#endif
#if
def HAVE_GETADDRINFO
#if
defined( HAVE_GETADDRINFO ) || defined( UNDER_CE )
freeaddrinfo
(
infos
);
#else
__freeaddrinfo
(
infos
);
...
...
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