Use Mde library and definition instead of some native definitions in NetLib, to simply network library.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4693 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff
2008-02-14 09:40:22 +00:00
parent bb8ffffd1c
commit e48e37fce2
102 changed files with 1697 additions and 2477 deletions

View File

@@ -85,7 +85,7 @@ typedef struct {
//
typedef struct {
UINT32 Signature;
NET_LIST_ENTRY Link;
LIST_ENTRY Link;
UDP_IO_PORT *UdpIo;
UDP_IO_CALLBACK CallBack;
@@ -101,7 +101,7 @@ typedef struct {
struct _UDP_IO_PORT {
UINT32 Signature;
NET_LIST_ENTRY Link;
LIST_ENTRY Link;
INTN RefCnt;
//
@@ -115,7 +115,7 @@ struct _UDP_IO_PORT {
EFI_UDP4_CONFIG_DATA UdpConfig;
EFI_SIMPLE_NETWORK_MODE SnpMode;
NET_LIST_ENTRY SentDatagram;
LIST_ENTRY SentDatagram;
UDP_RX_TOKEN *RecvRequest;
};