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
da6386df
Commit
da6386df
authored
Jul 14, 2020
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 14, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Trace SIO_IDEAL_SEND_BACKLOG_* calls.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
44cd11ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
socket.c
dlls/ws2_32/socket.c
+2
-2
ws2ipdef.h
include/ws2ipdef.h
+8
-0
No files found.
dlls/ws2_32/socket.c
View file @
da6386df
...
...
@@ -4554,8 +4554,8 @@ static const char *debugstr_wsaioctl(DWORD code)
IOCTL_NAME
(
WS_SIO_GET_INTERFACE_LIST
);
/* IOCTL_NAME(WS_SIO_GET_INTERFACE_LIST_EX); */
IOCTL_NAME
(
WS_SIO_GET_QOS
);
/*
IOCTL_NAME(WS_SIO_IDEAL_SEND_BACKLOG_CHANGE);
IOCTL_NAME(WS_SIO_IDEAL_SEND_BACKLOG_QUERY);
*/
IOCTL_NAME
(
WS_SIO_IDEAL_SEND_BACKLOG_CHANGE
);
IOCTL_NAME
(
WS_SIO_IDEAL_SEND_BACKLOG_QUERY
);
IOCTL_NAME
(
WS_SIO_KEEPALIVE_VALS
);
IOCTL_NAME
(
WS_SIO_MULTIPOINT_LOOPBACK
);
IOCTL_NAME
(
WS_SIO_MULTICAST_SCOPE
);
...
...
include/ws2ipdef.h
View file @
da6386df
...
...
@@ -282,6 +282,14 @@ typedef struct WS(in_pktinfo) {
#define SS_PORT(ssp) (((PSOCKADDR_IN)(ssp))->sin_port)
#ifndef USE_WS_PREFIX
#define SIO_IDEAL_SEND_BACKLOG_CHANGE _IO ('t', 122)
#define SIO_IDEAL_SEND_BACKLOG_QUERY _IOR('t', 123, ULONG)
#else
#define WS_SIO_IDEAL_SEND_BACKLOG_CHANGE WS__IO ('t', 122)
#define WS_SIO_IDEAL_SEND_BACKLOG_QUERY WS__IOR('t', 123, ULONG)
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
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