Silence some debug messages

svn path=/trunk/; revision=20537
This commit is contained in:
Gé van Geldorp 2006-01-02 20:51:54 +00:00
parent f7fe0d0258
commit 485b43da1d
2 changed files with 7 additions and 4 deletions

View file

@ -476,7 +476,7 @@ NTSTATUS TCPConnect
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 @@ NTSTATUS TCPConnect
&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"));

View file

@ -151,9 +151,11 @@ AfdStreamSocketConnect(PDEVICE_OBJECT DeviceObject, PIRP Irp,
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: