Merged socket development branch:
* Fixed bug report (Duane Voth: Python sockets test application not working) by starting the receive operations when a connection is established! * Increased performance by extending the idle loop into the network stack with the Poll call. * Added support for TCPv6 (SOCK_STREAM) and UDPv6 (SOCK_DGRAM). * Added support for getaddrinfo and getnameinfo calls. * Moved application PCD values into AppPkg Signed-off-by: lpleahy git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13002 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -29,11 +29,27 @@ CONST EFI_GUID mEslIp4ServiceGuid = {
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
Tag GUID - IPv6 in use by SocketDxe
|
||||
**/
|
||||
CONST EFI_GUID mEslIp6ServiceGuid = {
|
||||
0x2fc3b2d3, 0x6eba, 0x42b0, { 0xa4, 0xa7, 0x14, 0xc7, 0xa8, 0x4b, 0x5d, 0x22 }
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
Tag GUID - TCPv4 in use by SocketDxe
|
||||
**/
|
||||
CONST EFI_GUID mEslTcp4ServiceGuid = {
|
||||
0x4dcaab0a, 0x1990, 0x4352, { 0x8d, 0x2f, 0x2d, 0x8f, 0x13, 0x55, 0x98, 0xa5 }
|
||||
0x4dcaab0a, 0x1990, 0x4352, { 0x8d, 0x2f, 0x2d, 0x8f, 0x13, 0x55, 0x98, 0xa5 }
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
Tag GUID - TCPv6 in use by SocketDxe
|
||||
**/
|
||||
CONST EFI_GUID mEslTcp6ServiceGuid = {
|
||||
0xdd455a69, 0xec75, 0x456c, { 0x84, 0xd2, 0x95, 0xca, 0xe7, 0xd3, 0xc6, 0xd3 }
|
||||
};
|
||||
|
||||
|
||||
@@ -41,7 +57,15 @@ CONST EFI_GUID mEslTcp4ServiceGuid = {
|
||||
Tag GUID - UDPv4 in use by SocketDxe
|
||||
**/
|
||||
CONST EFI_GUID mEslUdp4ServiceGuid = {
|
||||
0x43a110ce, 0x9ccd, 0x402b, { 0x8c, 0x29, 0x4a, 0x6d, 0x8a, 0xf7, 0x79, 0x90 }
|
||||
0x43a110ce, 0x9ccd, 0x402b, { 0x8c, 0x29, 0x4a, 0x6d, 0x8a, 0xf7, 0x79, 0x90 }
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
Tag GUID - UDPv6 in use by SocketDxe
|
||||
**/
|
||||
CONST EFI_GUID mEslUdp6ServiceGuid = {
|
||||
0x32ff59cd, 0xc33, 0x48d0, { 0xa2, 0x44, 0x4b, 0xb8, 0x11, 0x33, 0x64, 0x3 }
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user