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>
This commit is contained in:
parent
44cd11ef4a
commit
da6386df8b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue