From 68d3f2fb61dba9bbde4caa214a0c5bb3bc6ee7da Mon Sep 17 00:00:00 2001 From: xdu2 Date: Mon, 1 Nov 2010 08:19:28 +0000 Subject: 1. Update IPsec driver to produce EFI_IPSEC2_PROTOCOL which is defined by UEFI errata that will appear in UEFI 2.3 specification after 2.3 errata B and future UEFI Specifications after 2.3. 2. Update IPv6 driver to consume the EFI_IPSEC2_PROTOCOL. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10991 6f19259b-4bc3-4df7-8a09-765794883524 --- NetworkPkg/IpSecDxe/IpSecCryptIo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'NetworkPkg/IpSecDxe/IpSecCryptIo.c') diff --git a/NetworkPkg/IpSecDxe/IpSecCryptIo.c b/NetworkPkg/IpSecDxe/IpSecCryptIo.c index 7011f98b06..93b69a6682 100644 --- a/NetworkPkg/IpSecDxe/IpSecCryptIo.c +++ b/NetworkPkg/IpSecDxe/IpSecCryptIo.c @@ -18,15 +18,15 @@ // Alogrithm's informations for the Encrypt/Decrpt Alogrithm. // ENCRYPT_ALGORITHM mIpsecEncryptAlgorithmList[IPSEC_ENCRYPT_ALGORITHM_LIST_SIZE] = { - {EFI_IPSEC_EALG_NULL, 0, 0, 1, NULL, NULL, NULL, NULL}, + {IKE_EALG_NULL, 0, 0, 1, NULL, NULL, NULL, NULL}, {(UINT8)-1, 0, 0, 0, NULL, NULL, NULL, NULL} }; // // Alogrithm's informations for the Authentication algorithm // AUTH_ALGORITHM mIpsecAuthAlgorithmList[IPSEC_AUTH_ALGORITHM_LIST_SIZE] = { - {EFI_IPSEC_AALG_NONE, 0, 0, 0, NULL, NULL, NULL, NULL}, - {EFI_IPSEC_AALG_NULL, 0, 0, 0, NULL, NULL, NULL, NULL}, + {IKE_AALG_NONE, 0, 0, 0, NULL, NULL, NULL, NULL}, + {IKE_AALG_NULL, 0, 0, 0, NULL, NULL, NULL, NULL}, {(UINT8)-1, 0, 0, 0, NULL, NULL, NULL, NULL} }; -- cgit v1.2.3