]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Input.h
Use Mde library and definition instead of some native definitions in NetLib, to simpl...
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Ip4Dxe / Ip4Input.h
index af8ed1adf348f5d6e17fcc03df15b5f5d98a5178..d44029d0858ef7f080587366675706f4488e4023 100644 (file)
@@ -54,7 +54,7 @@ typedef struct {
 // Structure used to assemble IP packets.\r
 //\r
 typedef struct {\r
-  NET_LIST_ENTRY            Link;\r
+  LIST_ENTRY                Link;\r
 \r
   //\r
   // Identity of one IP4 packet. Each fragment of a packet has\r
@@ -67,7 +67,7 @@ typedef struct {
 \r
   INTN                      TotalLen;\r
   INTN                      CurLen;\r
-  NET_LIST_ENTRY            Fragments;  // List of all the fragments of this packet\r
+  LIST_ENTRY                Fragments;  // List of all the fragments of this packet\r
 \r
   IP4_HEAD                  *Head;      // IP head of the first fragment\r
   IP4_CLIP_INFO             *Info;      // Per packet info of the first fragment\r
@@ -80,7 +80,7 @@ typedef struct {
 // as hash table.\r
 //\r
 typedef struct {\r
-  NET_LIST_ENTRY  Bucket[IP4_ASSEMLE_HASH_SIZE];\r
+  LIST_ENTRY      Bucket[IP4_ASSEMLE_HASH_SIZE];\r
 } IP4_ASSEMBLE_TABLE;\r
 \r
 #define IP4_GET_CLIP_INFO(Packet) ((IP4_CLIP_INFO *) ((Packet)->ProtoData))\r