Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
200f005d
Commit
200f005d
authored
Nov 22, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Nov 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EAI_NONAME -> WS_EAI_NODATA, check for EAI_NONAME and EAI_NODATA.
parent
c5d8c105
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
socket.c
dlls/winsock/socket.c
+11
-0
No files found.
dlls/winsock/socket.c
View file @
200f005d
...
@@ -332,7 +332,18 @@ static const int ws_eai_map[][2] =
...
@@ -332,7 +332,18 @@ static const int ws_eai_map[][2] =
MAP_OPTION
(
EAI_FAIL
),
MAP_OPTION
(
EAI_FAIL
),
MAP_OPTION
(
EAI_FAMILY
),
MAP_OPTION
(
EAI_FAMILY
),
MAP_OPTION
(
EAI_MEMORY
),
MAP_OPTION
(
EAI_MEMORY
),
/* Note: EAI_NODATA is deprecated, but still
* used by Windows and Linux... We map the newer
* EAI_NONAME to EAI_NODATA for now until Windows
* changes too.
*/
#ifdef EAI_NODATA
MAP_OPTION
(
EAI_NODATA
),
MAP_OPTION
(
EAI_NODATA
),
#endif
#ifdef EAI_NONAME
{
WS_EAI_NODATA
,
EAI_NONAME
},
#endif
MAP_OPTION
(
EAI_SERVICE
),
MAP_OPTION
(
EAI_SERVICE
),
MAP_OPTION
(
EAI_SOCKTYPE
),
MAP_OPTION
(
EAI_SOCKTYPE
),
{
0
,
0
}
{
0
,
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