mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:52:57 +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;
|
USHORT RemotePort;
|
||||||
PTDI_BUCKET Bucket;
|
PTDI_BUCKET Bucket;
|
||||||
|
|
||||||
DbgPrint("TCPConnect: Called\n");
|
TI_DbgPrint(DEBUG_TCP,("TCPConnect: Called\n"));
|
||||||
|
|
||||||
Bucket = ExAllocatePool( NonPagedPool, sizeof(*Bucket) );
|
Bucket = ExAllocatePool( NonPagedPool, sizeof(*Bucket) );
|
||||||
if( !Bucket ) return STATUS_NO_MEMORY;
|
if( !Bucket ) return STATUS_NO_MEMORY;
|
||||||
|
@ -494,9 +494,10 @@ NTSTATUS TCPConnect
|
||||||
&RemoteAddress,
|
&RemoteAddress,
|
||||||
&RemotePort);
|
&RemotePort);
|
||||||
|
|
||||||
DbgPrint("Connecting to address %x:%x\n",
|
TI_DbgPrint(DEBUG_TCP,
|
||||||
RemoteAddress.Address.IPv4Address,
|
("Connecting to address %x:%x\n",
|
||||||
RemotePort);
|
RemoteAddress.Address.IPv4Address,
|
||||||
|
RemotePort));
|
||||||
|
|
||||||
if (!NT_SUCCESS(Status)) {
|
if (!NT_SUCCESS(Status)) {
|
||||||
TI_DbgPrint(DEBUG_TCP, ("Could not AddrBuildAddress in TCPConnect\n"));
|
TI_DbgPrint(DEBUG_TCP, ("Could not AddrBuildAddress in TCPConnect\n"));
|
||||||
|
|
|
@ -151,9 +151,11 @@ AfdStreamSocketConnect(PDEVICE_OBJECT DeviceObject, PIRP Irp,
|
||||||
0, NULL, TRUE );
|
0, NULL, TRUE );
|
||||||
|
|
||||||
AFD_DbgPrint(MID_TRACE,("Connect request:\n"));
|
AFD_DbgPrint(MID_TRACE,("Connect request:\n"));
|
||||||
|
#if 0
|
||||||
OskitDumpBuffer
|
OskitDumpBuffer
|
||||||
( (PCHAR)ConnectReq,
|
( (PCHAR)ConnectReq,
|
||||||
IrpSp->Parameters.DeviceIoControl.InputBufferLength );
|
IrpSp->Parameters.DeviceIoControl.InputBufferLength );
|
||||||
|
#endif
|
||||||
|
|
||||||
switch( FCB->State ) {
|
switch( FCB->State ) {
|
||||||
case SOCKET_STATE_CONNECTED:
|
case SOCKET_STATE_CONNECTED:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue