diff options
author | Zhang Lubo <lubo.zhang@intel.com> | 2015-11-18 08:36:42 +0000 |
---|---|---|
committer | vanjeff <vanjeff@Edk2> | 2015-11-18 08:36:42 +0000 |
commit | 0e772049c65ad249b70808b456fc7f8ad694b275 (patch) | |
tree | a49069a7b7b707ff5b00397dfdd435696eea095f /NetworkPkg/HttpBootDxe/HttpBootComponentName.c | |
parent | ba82c72fc4d4f9230d3bf5d0a69b14e44d5105cf (diff) | |
download | edk2-platforms-0e772049c65ad249b70808b456fc7f8ad694b275.tar.xz |
NetworkPkg:Enable Http Boot over Ipv6 stack
Add new features to support Http boot over ipv6 stack.
(Sync patch r18743 from main trunk.)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Zhang Lubo <lubo.zhang@intel.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/branches/UDK2015@18874 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'NetworkPkg/HttpBootDxe/HttpBootComponentName.c')
-rw-r--r-- | NetworkPkg/HttpBootDxe/HttpBootComponentName.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/NetworkPkg/HttpBootDxe/HttpBootComponentName.c b/NetworkPkg/HttpBootDxe/HttpBootComponentName.c index 0708598c4f..2c39089da3 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootComponentName.c +++ b/NetworkPkg/HttpBootDxe/HttpBootComponentName.c @@ -151,7 +151,10 @@ HttpBootDxeComponentNameGetControllerName ( NicHandle = HttpBootGetNicByIp4Children (ControllerHandle);
if (NicHandle == NULL) {
- return EFI_UNSUPPORTED;
+ NicHandle = HttpBootGetNicByIp6Children(ControllerHandle);
+ if (NicHandle == NULL) {
+ return EFI_UNSUPPORTED;
+ }
}
//
|