- Remove the extra debug prints since the bug has been fixed

svn path=/trunk/; revision=53019
This commit is contained in:
Cameron Gutman 2011-08-01 13:50:00 +00:00
parent 96272d084e
commit 489942bf51
3 changed files with 0 additions and 8 deletions

View file

@ -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)

View file

@ -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);

View file

@ -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);