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
38a3a574
Commit
38a3a574
authored
Dec 27, 2013
by
Bruno Jesus
Committed by
Alexandre Julliard
Dec 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Add support to print IPX socket address.
parent
4af2ca4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
socket.c
dlls/ws2_32/socket.c
+12
-0
No files found.
dlls/ws2_32/socket.c
View file @
38a3a574
...
...
@@ -292,6 +292,18 @@ static inline const char *debugstr_sockaddr( const struct WS_sockaddr *a )
return
wine_dbg_sprintf
(
"{ family AF_INET6, address %s, port %d }"
,
p
,
ntohs
(
sin
->
sin6_port
));
}
case
WS_AF_IPX
:
{
int
i
;
char
netnum
[
16
],
nodenum
[
16
];
struct
WS_sockaddr_ipx
*
sin
=
(
struct
WS_sockaddr_ipx
*
)
a
;
for
(
i
=
0
;
i
<
4
;
i
++
)
sprintf
(
netnum
+
i
*
2
,
"%02X"
,
(
unsigned
char
)
sin
->
sa_netnum
[
i
]);
for
(
i
=
0
;
i
<
6
;
i
++
)
sprintf
(
nodenum
+
i
*
2
,
"%02X"
,
(
unsigned
char
)
sin
->
sa_nodenum
[
i
]);
return
wine_dbg_sprintf
(
"{ family AF_IPX, address %s.%s, ipx socket %d }"
,
netnum
,
nodenum
,
sin
->
sa_socket
);
}
case
WS_AF_IRDA
:
{
DWORD
addr
;
...
...
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