Author: cgutman Date: Sun Jul 31 23:32:38 2011 New Revision: 53013
URL: http://svn.reactos.org/svn/reactos?rev=53013&view=rev Log: [TCPIP] - Add a couple more debug prints
Modified: trunk/reactos/drivers/network/tcpip/tcpip/fileobjs.c
Modified: trunk/reactos/drivers/network/tcpip/tcpip/fileobjs.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/network/tcpip/tcpip... ============================================================================== --- trunk/reactos/drivers/network/tcpip/tcpip/fileobjs.c [iso-8859-1] (original) +++ trunk/reactos/drivers/network/tcpip/tcpip/fileobjs.c [iso-8859-1] Sun Jul 31 23:32:38 2011 @@ -284,6 +284,7 @@ { /* 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) @@ -299,6 +300,7 @@ { /* 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)