Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
b748d47b
Commit
b748d47b
authored
May 24, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getaddrinfo.c: fix MSVC compilation
parent
4ed95dfa
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
25 deletions
+35
-25
src/misc/getaddrinfo.c
src/misc/getaddrinfo.c
+35
-25
No files found.
src/misc/getaddrinfo.c
View file @
b748d47b
...
...
@@ -23,7 +23,6 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include "network.h"
#include <stddef.h>
/* size_t */
#include <string.h>
/* strncpy(), strlen(), memcpy(), memset(), strchr() */
...
...
@@ -37,15 +36,24 @@
#endif
#include <errno.h>
#if defined (UNDER_CE)
# include <winsock.h>
#elif defined WIN32
#if defined( WIN32 ) || defined( UNDER_CE )
# include <winsock2.h>
# include <ws2tcpip.h>
#else
# include <sys/socket.h>
# include <netinet/in.h>
# ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
# endif
# include <netdb.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "network.h"
#ifdef SYS_BEOS
#define NO_ADDRESS NO_DATA
#define PF_INET AF_INET
...
...
@@ -597,6 +605,7 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
service
=
"0"
;
#ifdef WIN32
{
typedef
int
(
CALLBACK
*
GETADDRINFO
)
(
const
char
*
,
const
char
*
,
const
struct
addrinfo
*
,
struct
addrinfo
**
);
...
...
@@ -620,6 +629,7 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
FreeLibrary
(
wship6_module
);
}
}
#endif
#if HAVE_GETADDRINFO
return
getaddrinfo
(
psz_node
,
service
,
&
hints
,
res
);
...
...
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