Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a17ac691
Commit
a17ac691
authored
Aug 01, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Added partial GetAddrInfoExW implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
037e6010
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
socket.c
dlls/ws2_32/socket.c
+23
-2
No files found.
dlls/ws2_32/socket.c
View file @
a17ac691
...
...
@@ -6901,9 +6901,30 @@ int WINAPI GetAddrInfoExW(const WCHAR *name, const WCHAR *servname, DWORD namesp
const
ADDRINFOEXW
*
hints
,
ADDRINFOEXW
**
result
,
struct
timeval
*
timeout
,
OVERLAPPED
*
overlapped
,
LPLOOKUPSERVICE_COMPLETION_ROUTINE
completion_routine
,
HANDLE
*
handle
)
{
FIXME
(
"(%s %s %x %s %p %p %p %p %p %p)
\n
"
,
debugstr_w
(
name
),
debugstr_w
(
servname
),
namespace
,
int
ret
;
TRACE
(
"(%s %s %x %s %p %p %p %p %p %p)
\n
"
,
debugstr_w
(
name
),
debugstr_w
(
servname
),
namespace
,
debugstr_guid
(
namespace_id
),
hints
,
result
,
timeout
,
overlapped
,
completion_routine
,
handle
);
return
WSAHOST_NOT_FOUND
;
if
(
namespace
!=
NS_DNS
)
FIXME
(
"Unsupported namespace %u
\n
"
,
namespace
);
if
(
namespace_id
)
FIXME
(
"Unsupported naemspace_id %s
\n
"
,
debugstr_guid
(
namespace_id
));
if
(
hints
)
FIXME
(
"Unsupported hints
\n
"
);
if
(
timeout
)
FIXME
(
"Unsupported timeout
\n
"
);
if
(
overlapped
)
FIXME
(
"Unsupported overlapped
\n
"
);
if
(
completion_routine
)
FIXME
(
"Unsupported completion_routine
\n
"
);
if
(
handle
)
FIXME
(
"Unsupported cancel handle
\n
"
);
ret
=
WS_getaddrinfoW
(
name
,
servname
,
NULL
,
result
);
if
(
ret
)
return
ret
;
if
(
handle
)
*
handle
=
(
HANDLE
)
0xdeadbeef
;
return
0
;
}
/***********************************************************************
...
...
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