mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:31:40 +00:00
Silence some debug messages
svn path=/trunk/; revision=20537
This commit is contained in:
parent
f7fe0d0258
commit
485b43da1d
2 changed files with 7 additions and 4 deletions
|
@ -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"));
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue