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
1e099993
Commit
1e099993
authored
Sep 24, 2010
by
Juan Lang
Committed by
Alexandre Julliard
Sep 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Unpack ioctl codes in WSAIoctl trace.
parent
eabe3b34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
1 deletion
+78
-1
socket.c
dlls/ws2_32/socket.c
+78
-1
No files found.
dlls/ws2_32/socket.c
View file @
1e099993
...
@@ -2839,6 +2839,82 @@ char* WINAPI WS_inet_ntoa(struct WS_in_addr in)
...
@@ -2839,6 +2839,82 @@ char* WINAPI WS_inet_ntoa(struct WS_in_addr in)
return
NULL
;
return
NULL
;
}
}
static
const
char
*
debugstr_wsaioctl
(
DWORD
ioctl
)
{
switch
(
ioctl
&
0x18000000
)
{
case
WS_IOC_UNIX
:
{
BYTE
size
=
(
ioctl
>>
16
)
&
WS_IOCPARM_MASK
;
char
x
=
(
ioctl
&
0xff00
)
>>
8
;
BYTE
y
=
ioctl
&
0xff
;
const
char
*
buf_type
;
char
args
[
14
];
switch
(
ioctl
&
(
WS_IOC_VOID
|
WS_IOC_INOUT
))
{
case
WS_IOC_VOID
:
buf_type
=
"_IO"
;
sprintf
(
args
,
"%d, %d"
,
x
,
y
);
break
;
case
WS_IOC_IN
:
buf_type
=
"_IOW"
;
sprintf
(
args
,
"'%c', %d, %d"
,
x
,
y
,
size
);
break
;
case
WS_IOC_OUT
:
buf_type
=
"_IOR"
;
sprintf
(
args
,
"'%c', %d, %d"
,
x
,
y
,
size
);
break
;
default:
buf_type
=
"?"
;
sprintf
(
args
,
"'%c', %d, %d"
,
x
,
y
,
size
);
break
;
}
return
wine_dbg_sprintf
(
"%s(%s)"
,
buf_type
,
args
);
}
default:
{
USHORT
code
=
ioctl
&
0xffff
;
const
char
*
family
,
*
buf_type
;
/* This switch looks redundant, but isn't: the case WS_IOC_UNIX
* is handled differently than all others.
*/
switch
(
ioctl
&
0x18000000
)
{
case
WS_IOC_WS2
:
family
=
"IOC_WS2"
;
break
;
case
WS_IOC_PROTOCOL
:
family
=
"IOC_PROTOCOL"
;
break
;
case
WS_IOC_VENDOR
:
family
=
"IOC_VENDOR"
;
break
;
}
switch
(
ioctl
&
(
WS_IOC_VOID
|
WS_IOC_INOUT
))
{
case
WS_IOC_VOID
:
buf_type
=
"_WSAIO"
;
break
;
case
WS_IOC_INOUT
:
buf_type
=
"_WSAIORW"
;
break
;
case
WS_IOC_IN
:
buf_type
=
"_WSAIOW"
;
break
;
case
WS_IOC_OUT
:
buf_type
=
"_WSAIOR"
;
break
;
default:
buf_type
=
"?"
;
break
;
}
return
wine_dbg_sprintf
(
"%s(%s, %d)"
,
buf_type
,
family
,
code
);
}
}
}
/**********************************************************************
/**********************************************************************
* WSAIoctl (WS2_32.50)
* WSAIoctl (WS2_32.50)
*
*
...
@@ -3185,7 +3261,8 @@ INT WINAPI WSAIoctl(SOCKET s,
...
@@ -3185,7 +3261,8 @@ INT WINAPI WSAIoctl(SOCKET s,
FIXME
(
"WS_SIO_UDP_CONNRESET stub
\n
"
);
FIXME
(
"WS_SIO_UDP_CONNRESET stub
\n
"
);
break
;
break
;
default:
default:
FIXME
(
"unsupported WS_IOCTL cmd (%08x)
\n
"
,
dwIoControlCode
);
FIXME
(
"unsupported WS_IOCTL cmd (%s)
\n
"
,
debugstr_wsaioctl
(
dwIoControlCode
));
WSASetLastError
(
WSAEOPNOTSUPP
);
WSASetLastError
(
WSAEOPNOTSUPP
);
return
SOCKET_ERROR
;
return
SOCKET_ERROR
;
}
}
...
...
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