Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8cec5b21
Commit
8cec5b21
authored
Aug 09, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_inet_pton: use getaddrinfo, should fix #1824
parent
95404003
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
48 deletions
+25
-48
src/network/io.c
src/network/io.c
+25
-48
No files found.
src/network/io.c
View file @
8cec5b21
...
...
@@ -32,6 +32,7 @@
# include "config.h"
#endif
#define _WIN32_WINNT 0x0501
#include <vlc_common.h>
#include <stdlib.h>
...
...
@@ -558,62 +559,38 @@ ssize_t __net_vaPrintf( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
int
vlc_inet_pton
(
int
af
,
const
char
*
src
,
void
*
dst
)
{
#ifndef HAVE_INET_PTON
# ifdef WIN32
/* As we already know, Microsoft always go its own way, so even if they do
* provide IPv6, they don't provide the API. */
struct
sockaddr_storage
addr
;
int
len
=
sizeof
(
addr
);
/* Damn it, they didn't even put LPCSTR for the firs parameter!!! */
#ifdef UNICODE
wchar_t
*
workaround_for_ill_designed_api
=
malloc
(
MAX_PATH
*
sizeof
(
wchar_t
)
);
mbstowcs
(
workaround_for_ill_designed_api
,
src
,
MAX_PATH
);
workaround_for_ill_designed_api
[
MAX_PATH
-
1
]
=
0
;
#else
char
*
workaround_for_ill_designed_api
=
strdup
(
src
);
#endif
if
(
WSAStringToAddress
(
workaround_for_ill_designed_api
,
af
,
NULL
,
(
LPSOCKADDR
)
&
addr
,
&
len
)
)
{
free
(
workaround_for_ill_designed_api
);
/* Windows Vista has inet_pton(), but not XP. */
/* We have a pretty good example of abstraction inversion here... */
struct
addrinfo
hints
=
{
.
ai_family
=
af
,
.
ai_socktype
=
SOCK_DGRAM
,
/* make sure we have... */
.
ai_protocol
=
IPPROTO_UDP
,
/* ...only one response */
.
ai_flags
=
AI_NUMERICHOST
,
},
*
res
;
if
(
getaddrinfo
(
src
,
NULL
,
&
hints
,
&
res
))
return
-
1
;
}
free
(
workaround_for_ill_designed_api
);
switch
(
af
)
{
case
AF_INET6
:
memcpy
(
dst
,
&
((
struct
sockaddr_in6
*
)
&
addr
)
->
sin6_addr
,
16
);
break
;
const
void
*
data
;
size_t
len
;
switch
(
af
)
{
case
AF_INET
:
memcpy
(
dst
,
&
((
struct
sockaddr_in
*
)
&
addr
)
->
sin_addr
,
4
);
data
=
&
((
const
struct
sockaddr_in
*
)
res
->
ai_addr
)
->
sin_addr
;
len
=
4
;
break
;
#ifdef AF_INET6
case
AF_INET6
:
data
=
&
((
const
struct
sockaddr_in6
*
)
res
->
ai_addr
)
->
sin6_addr
;
len
=
16
;
break
;
#endif
default:
WSASetLastError
(
WSAEAFNOSUPPORT
)
;
errno
=
EAFNOSUPPORT
;
return
-
1
;
}
# else
/* Assume IPv6 is not supported. */
/* Would be safer and more simpler to use inet_aton() but it is most
* likely not provided either. */
uint32_t
ipv4
;
if
(
af
!=
AF_INET
)
{
errno
=
EAFNOSUPPORT
;
return
-
1
;
}
ipv4
=
inet_addr
(
src
);
if
(
ipv4
==
INADDR_NONE
)
return
-
1
;
memcpy
(
dst
,
&
ipv4
,
4
);
# endif
/* WIN32 */
memcpy
(
dst
,
data
,
len
);
return
0
;
#else
/* HAVE_INET_PTON */
return
inet_pton
(
af
,
src
,
dst
);
...
...
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