slight mod to the end of line for received ip packets to display a debug message.
authorRobert Dickenson <robd@reactos.org>
Sun, 10 Nov 2002 13:52:13 +0000 (13:52 +0000)
committerRobert Dickenson <robd@reactos.org>
Sun, 10 Nov 2002 13:52:13 +0000 (13:52 +0000)
svn path=/trunk/; revision=3729

reactos/drivers/net/tcpip/network/receive.c

index c983838..4704ea7 100644 (file)
@@ -536,7 +536,7 @@ VOID IPv4Receive(
  *     IPPacket = Pointer to IP packet
  */
 {
-//PNEIGHBOR_CACHE_ENTRY NCE;
+  PNEIGHBOR_CACHE_ENTRY NCE;
   PNET_TABLE_ENTRY NTE;
   UINT AddressType;
 
@@ -590,8 +590,9 @@ VOID IPv4Receive(
        try to find a route and forward the packet */
 
     /* FIXME: Check if acting as a router */
-#if 0
-    NCE = RouteFindRouter(&IPPacket->DstAddr, NULL);
+#if 1
+    //NCE = RouteFindRouter(&IPPacket->DstAddr, NULL);
+    NCE = NULL;
     if (NCE) {
       /* FIXME: Possibly fragment datagram */
       /* Forward the packet */