]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dispatcher.c
add assertion to pass K8 check.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Tcp4Dxe / Tcp4Dispatcher.c
index 009ae582a505927ba761c6a28cc73b278253f220..49b313615d2ac78216f4e5a443b2609fd7567304 100644 (file)
@@ -1,21 +1,15 @@
 /** @file\r
+  Tcp request dispatcher implementation.\r
 \r
-Copyright (c) 2005 - 2006, Intel Corporation\r
+Copyright (c) 2005 - 2006, Intel Corporation<BR>\r
 All rights reserved. This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
+http://opensource.org/licenses/bsd-license.php<BR>\r
 \r
 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
-Module Name:\r
-\r
-  Tcp4Dispatcher.c\r
-\r
-Abstract:\r
-\r
-\r
 **/\r
 \r
 #include "Tcp4Main.h"\r
@@ -76,8 +70,8 @@ Tcp4Route (
 **/\r
 EFI_STATUS\r
 Tcp4GetMode (\r
-  IN TCP_CB         *Tcb,\r
-  IN TCP4_MODE_DATA *Mode\r
+  IN     TCP_CB         *Tcb,\r
+  IN OUT TCP4_MODE_DATA *Mode\r
   )\r
 {\r
   SOCKET                *Sock;\r
@@ -102,8 +96,8 @@ Tcp4GetMode (
     AccessPoint                     = &(ConfigData->AccessPoint);\r
     Option                          = ConfigData->ControlOption;\r
 \r
-    ConfigData->TypeOfService       = Tcb->TOS;\r
-    ConfigData->TimeToLive          = Tcb->TTL;\r
+    ConfigData->TypeOfService       = Tcb->Tos;\r
+    ConfigData->TimeToLive          = Tcb->Ttl;\r
 \r
     AccessPoint->UseDefaultAddress  = Tcb->UseDefaultAddr;\r
 \r
@@ -250,7 +244,7 @@ Tcp4FlushPcb (
 }\r
 \r
 /**\r
-  Attach a Tcb to the socket.\r
+  Attach a Pcb to the socket.\r
 \r
   @param  Sk                     Pointer to the socket of this TCP instance.\r
   \r
@@ -301,7 +295,7 @@ Tcp4AttachPcb (
 }\r
 \r
 /**\r
-  Detach the Tcb of the socket.\r
+  Detach the Pcb of the socket.\r
 \r
   @param  Sk                     Pointer to the socket of this TCP instance.\r
   \r
@@ -330,7 +324,7 @@ Tcp4DetachPcb (
 \r
 \r
 /**\r
-  Configure the Tcb using CfgData.\r
+  Configure the Pcb using CfgData.\r
 \r
   @param  Sk                     Pointer to the socket of this TCP instance.\r
   @param  CfgData                Pointer to the TCP configuration data.\r
@@ -430,8 +424,8 @@ Tcp4ConfigurePcb (
   //\r
   // initialize Tcb in the light of CfgData\r
   //\r
-  Tcb->TTL            = CfgData->TimeToLive;\r
-  Tcb->TOS            = CfgData->TypeOfService;\r
+  Tcb->Ttl            = CfgData->TimeToLive;\r
+  Tcb->Tos            = CfgData->TypeOfService;\r
 \r
   Tcb->UseDefaultAddr = CfgData->AccessPoint.UseDefaultAddress;\r
 \r