1. Update the UdpIo to a combined UdpIo to support both v4 and v6 stack.

2. Update Dhcp4 and Mtftp4 driver to adopt the combined UdpIo.
3. Clean up coding style problems in combined IpIoLib/NetLib. Update Tcp4 and Udp4 to adopt the changes.


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9382 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
tye
2009-10-30 05:11:38 +00:00
parent 72f01d4b4a
commit b45b45b2d2
24 changed files with 1006 additions and 583 deletions

View File

@@ -86,7 +86,7 @@ Udp4DgramSent (
VOID
Udp4DgramRcvd (
IN EFI_STATUS Status,
IN ICMP_ERROR IcmpError,
IN UINT8 IcmpError,
IN EFI_NET_SESSION_DATA *NetSession,
IN NET_BUF *Packet,
IN VOID *Context
@@ -227,7 +227,7 @@ Udp4Demultiplex (
VOID
Udp4IcmpHandler (
IN UDP4_SERVICE_DATA *Udp4Service,
IN ICMP_ERROR IcmpError,
IN UINT8 IcmpError,
IN EFI_NET_SESSION_DATA *NetSession,
IN NET_BUF *Packet
);
@@ -1029,7 +1029,7 @@ Udp4DgramSent (
VOID
Udp4DgramRcvd (
IN EFI_STATUS Status,
IN ICMP_ERROR IcmpError,
IN UINT8 IcmpError,
IN EFI_NET_SESSION_DATA *NetSession,
IN NET_BUF *Packet,
IN VOID *Context
@@ -1780,7 +1780,7 @@ Udp4SendPortUnreach (
VOID
Udp4IcmpHandler (
IN UDP4_SERVICE_DATA *Udp4Service,
IN ICMP_ERROR IcmpError,
IN UINT8 IcmpError,
IN EFI_NET_SESSION_DATA *NetSession,
IN NET_BUF *Packet
)