Commit da6386df authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

ws2_32: Trace SIO_IDEAL_SEND_BACKLOG_* calls.

parent 44cd11ef
......@@ -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);
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment