server: Add a trace for the supported socket ioctl.

This commit is contained in:
Alexandre Julliard 2015-05-06 09:26:14 +09:00
parent 311f786286
commit 62802339a5
1 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,8 @@
#include "winuser.h"
#include "winioctl.h"
#include "ddk/wdm.h"
#define USE_WS_PREFIX
#include "winsock2.h"
#include "file.h"
#include "request.h"
#include "unicode.h"
@ -115,6 +117,7 @@ static void dump_ioctl_code( const char *prefix, const ioctl_code_t *code )
CASE(FSCTL_PIPE_DISCONNECT);
CASE(FSCTL_PIPE_LISTEN);
CASE(FSCTL_PIPE_WAIT);
CASE(WS_SIO_ADDRESS_LIST_CHANGE);
default: fprintf( stderr, "%s%08x", prefix, *code ); break;
#undef CASE
}