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
7fd3d9d4
Commit
7fd3d9d4
authored
Dec 11, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Add more traces.
parent
e25853c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
socket.c
dlls/ws2_32/socket.c
+16
-1
ws2tcpip.h
include/ws2tcpip.h
+2
-2
No files found.
dlls/ws2_32/socket.c
View file @
7fd3d9d4
...
@@ -2944,6 +2944,7 @@ int WINAPI WS_getsockname(SOCKET s, struct WS_sockaddr *name, int *namelen)
...
@@ -2944,6 +2944,7 @@ int WINAPI WS_getsockname(SOCKET s, struct WS_sockaddr *name, int *namelen)
else
else
{
{
res
=
0
;
res
=
0
;
TRACE
(
"=> %s
\n
"
,
debugstr_sockaddr
(
name
));
}
}
release_sock_fd
(
s
,
fd
);
release_sock_fd
(
s
,
fd
);
}
}
...
@@ -5455,7 +5456,7 @@ int WINAPI WS_getaddrinfo(LPCSTR nodename, LPCSTR servname, const struct WS_addr
...
@@ -5455,7 +5456,7 @@ int WINAPI WS_getaddrinfo(LPCSTR nodename, LPCSTR servname, const struct WS_addr
*
xai
=
NULL
;
*
xai
=
NULL
;
while
(
xuai
)
{
while
(
xuai
)
{
struct
WS_addrinfo
*
ai
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
struct
WS_addrinfo
));
struct
WS_addrinfo
*
ai
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
struct
WS_addrinfo
));
int
len
;
SIZE_T
len
;
if
(
!
ai
)
if
(
!
ai
)
goto
outofmem
;
goto
outofmem
;
...
@@ -5493,6 +5494,18 @@ int WINAPI WS_getaddrinfo(LPCSTR nodename, LPCSTR servname, const struct WS_addr
...
@@ -5493,6 +5494,18 @@ int WINAPI WS_getaddrinfo(LPCSTR nodename, LPCSTR servname, const struct WS_addr
xuai
=
xuai
->
ai_next
;
xuai
=
xuai
->
ai_next
;
}
}
freeaddrinfo
(
unixaires
);
freeaddrinfo
(
unixaires
);
if
(
TRACE_ON
(
winsock
))
{
struct
WS_addrinfo
*
ai
=
*
res
;
while
(
ai
)
{
TRACE
(
"=> %p, flags %#x, family %d, type %d, protocol %d, len %ld, name %s, addr %s
\n
"
,
ai
,
ai
->
ai_flags
,
ai
->
ai_family
,
ai
->
ai_socktype
,
ai
->
ai_protocol
,
ai
->
ai_addrlen
,
ai
->
ai_canonname
,
debugstr_sockaddr
(
ai
->
ai_addr
));
ai
=
ai
->
ai_next
;
}
}
}
else
}
else
result
=
convert_eai_u2w
(
result
);
result
=
convert_eai_u2w
(
result
);
...
@@ -6985,6 +6998,7 @@ INT WINAPI WSAAddressToStringA( LPSOCKADDR sockaddr, DWORD len,
...
@@ -6985,6 +6998,7 @@ INT WINAPI WSAAddressToStringA( LPSOCKADDR sockaddr, DWORD len,
return
SOCKET_ERROR
;
return
SOCKET_ERROR
;
}
}
TRACE
(
"=> %s,%u bytes
\n
"
,
debugstr_a
(
buffer
),
size
);
*
lenstr
=
size
;
*
lenstr
=
size
;
strcpy
(
string
,
buffer
);
strcpy
(
string
,
buffer
);
return
0
;
return
0
;
...
@@ -7034,6 +7048,7 @@ INT WINAPI WSAAddressToStringW( LPSOCKADDR sockaddr, DWORD len,
...
@@ -7034,6 +7048,7 @@ INT WINAPI WSAAddressToStringW( LPSOCKADDR sockaddr, DWORD len,
return
SOCKET_ERROR
;
return
SOCKET_ERROR
;
}
}
TRACE
(
"=> %s,%u bytes
\n
"
,
debugstr_w
(
buffer
),
size
);
*
lenstr
=
size
;
*
lenstr
=
size
;
lstrcpyW
(
string
,
buffer
);
lstrcpyW
(
string
,
buffer
);
return
0
;
return
0
;
...
...
include/ws2tcpip.h
View file @
7fd3d9d4
...
@@ -36,7 +36,7 @@ typedef struct WS(addrinfo)
...
@@ -36,7 +36,7 @@ typedef struct WS(addrinfo)
int
ai_family
;
int
ai_family
;
int
ai_socktype
;
int
ai_socktype
;
int
ai_protocol
;
int
ai_protocol
;
size_t
ai_addrlen
;
SIZE_T
ai_addrlen
;
char
*
ai_canonname
;
char
*
ai_canonname
;
struct
WS
(
sockaddr
)
*
ai_addr
;
struct
WS
(
sockaddr
)
*
ai_addr
;
struct
WS
(
addrinfo
)
*
ai_next
;
struct
WS
(
addrinfo
)
*
ai_next
;
...
@@ -48,7 +48,7 @@ typedef struct WS(addrinfoW)
...
@@ -48,7 +48,7 @@ typedef struct WS(addrinfoW)
int
ai_family
;
int
ai_family
;
int
ai_socktype
;
int
ai_socktype
;
int
ai_protocol
;
int
ai_protocol
;
size_t
ai_addrlen
;
SIZE_T
ai_addrlen
;
PWSTR
ai_canonname
;
PWSTR
ai_canonname
;
struct
WS
(
sockaddr
)
*
ai_addr
;
struct
WS
(
sockaddr
)
*
ai_addr
;
struct
WS
(
addrinfoW
)
*
ai_next
;
struct
WS
(
addrinfoW
)
*
ai_next
;
...
...
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