diff --git a/reactos/drivers/network/tcpip/tcpip/fileobjs.c b/reactos/drivers/network/tcpip/tcpip/fileobjs.c index 5d474d00fe3..f7ead95d6cc 100644 --- a/reactos/drivers/network/tcpip/tcpip/fileobjs.c +++ b/reactos/drivers/network/tcpip/tcpip/fileobjs.c @@ -284,7 +284,6 @@ NTSTATUS FileOpenAddress( { /* The client specified an explicit port so we force a bind to this */ AddrFile->Port = TCPAllocatePort(Address->Address[0].Address[0].sin_port); - DbgPrint("Bind - Explicit port %d\n", AddrFile->Port); /* Check for bind success */ if (AddrFile->Port == 0xffff) @@ -300,7 +299,6 @@ NTSTATUS FileOpenAddress( { /* The client is trying to bind to a local address so allocate a port now too */ AddrFile->Port = TCPAllocatePort(0); - DbgPrint("Bind - Unspecified port %d\n", AddrFile->Port); /* Check for bind success */ if (AddrFile->Port == 0xffff) diff --git a/reactos/lib/drivers/ip/transport/tcp/accept.c b/reactos/lib/drivers/ip/transport/tcp/accept.c index afdeab81f4b..80103aa5268 100644 --- a/reactos/lib/drivers/ip/transport/tcp/accept.c +++ b/reactos/lib/drivers/ip/transport/tcp/accept.c @@ -88,8 +88,6 @@ NTSTATUS TCPListen( PCONNECTION_ENDPOINT Connection, UINT Backlog ) { Status = TCPTranslateError(OskitTCPBind(Connection, &AddressToBind, sizeof(AddressToBind))); - - DbgPrint("Listen - Explicit bind on port %d returned 0x%x\n", Connection->AddressFile->Port, Status); } else { @@ -110,7 +108,6 @@ NTSTATUS TCPListen( PCONNECTION_ENDPOINT Connection, UINT Backlog ) { { /* Allocate the port in the port bitmap */ Connection->AddressFile->Port = TCPAllocatePort(LocalAddress.Address[0].Address[0].sin_port); - DbgPrint("Listen - Implicit bind on port %d\n", Connection->AddressFile->Port); /* This should never fail */ ASSERT(Connection->AddressFile->Port != 0xFFFF); diff --git a/reactos/lib/drivers/ip/transport/tcp/tcp.c b/reactos/lib/drivers/ip/transport/tcp/tcp.c index 1ae59ea7070..951e807e34a 100644 --- a/reactos/lib/drivers/ip/transport/tcp/tcp.c +++ b/reactos/lib/drivers/ip/transport/tcp/tcp.c @@ -773,8 +773,6 @@ NTSTATUS TCPConnect Status = TCPTranslateError(OskitTCPBind(Connection, &AddressToBind, sizeof(AddressToBind))); - - DbgPrint("Connect - Explicit bind on port %d returned 0x%x\n", Connection->AddressFile->Port, Status); } else { @@ -805,7 +803,6 @@ NTSTATUS TCPConnect { /* Allocate the port in the port bitmap */ Connection->AddressFile->Port = TCPAllocatePort(LocalAddress.Address[0].Address[0].sin_port); - DbgPrint("Connect - Implicit bind on port %d\n", Connection->AddressFile->Port); /* This should never fail */ ASSERT(Connection->AddressFile->Port != 0xFFFF);