Silence some debug messages Modified: trunk/reactos/drivers/lib/ip/transport/tcp/tcp.c Modified: trunk/reactos/drivers/net/afd/afd/connect.c _____
Modified: trunk/reactos/drivers/lib/ip/transport/tcp/tcp.c --- trunk/reactos/drivers/lib/ip/transport/tcp/tcp.c 2006-01-02 20:26:03 UTC (rev 20536) +++ trunk/reactos/drivers/lib/ip/transport/tcp/tcp.c 2006-01-02 20:51:54 UTC (rev 20537) @@ -476,7 +476,7 @@
USHORT RemotePort; PTDI_BUCKET Bucket;
- DbgPrint("TCPConnect: Called\n"); + TI_DbgPrint(DEBUG_TCP,("TCPConnect: Called\n"));
Bucket = ExAllocatePool( NonPagedPool, sizeof(*Bucket) ); if( !Bucket ) return STATUS_NO_MEMORY; @@ -494,9 +494,10 @@ &RemoteAddress, &RemotePort);
- DbgPrint("Connecting to address %x:%x\n", - RemoteAddress.Address.IPv4Address, - RemotePort); + TI_DbgPrint(DEBUG_TCP, + ("Connecting to address %x:%x\n", + RemoteAddress.Address.IPv4Address, + RemotePort));
if (!NT_SUCCESS(Status)) { TI_DbgPrint(DEBUG_TCP, ("Could not AddrBuildAddress in TCPConnect\n")); _____
Modified: trunk/reactos/drivers/net/afd/afd/connect.c --- trunk/reactos/drivers/net/afd/afd/connect.c 2006-01-02 20:26:03 UTC (rev 20536) +++ trunk/reactos/drivers/net/afd/afd/connect.c 2006-01-02 20:51:54 UTC (rev 20537) @@ -151,9 +151,11 @@
0, NULL, TRUE );
AFD_DbgPrint(MID_TRACE,("Connect request:\n")); +#if 0 OskitDumpBuffer ( (PCHAR)ConnectReq, IrpSp->Parameters.DeviceIoControl.InputBufferLength ); +#endif
switch( FCB->State ) { case SOCKET_STATE_CONNECTED: