summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/NetworkPkg.uni
diff options
context:
space:
mode:
authorHeng Luo <heng.luo@intel.com>2022-04-03 14:14:10 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-04-11 15:12:46 +0000
commit35a4b63247cb4e42f3484dcf2b45ce9a4360596e (patch)
tree7aca461e11c1a24bb0a029270e6a8f9667f896f7 /NetworkPkg/NetworkPkg.uni
parentdab96cf02e3be378310dd1bce119b0fac6fac958 (diff)
downloadedk2-35a4b63247cb4e42f3484dcf2b45ce9a4360596e.tar.gz
edk2-35a4b63247cb4e42f3484dcf2b45ce9a4360596e.tar.bz2
edk2-35a4b63247cb4e42f3484dcf2b45ce9a4360596e.zip
NetworkPkg: Add PCDs for HTTP DNS RetryCount and RetryInterval
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3889 Currently the HTTP DNS Retry Interval is 2 second and no retry attempt. If DNS response can't arrive in 2 second, the DNS request is failed, and then HTTP boot is failed. In order to resolve this issue, Add PCDs to support RetryCount and RetryInterval configured in Platform. Cc: Maciej Rabeda <maciej.rabeda@linux.intel.com> Cc: Fu Siyuan <siyuan.fu@intel.com> Cc: Wu Jiaxin <jiaxin.wu@intel.com> Signed-off-by: Heng Luo <heng.luo@intel.com> Reviewed-by: Maciej Rabeda <maciej.rabeda@linux.intel.com>
Diffstat (limited to 'NetworkPkg/NetworkPkg.uni')
-rw-r--r--NetworkPkg/NetworkPkg.uni11
1 files changed, 11 insertions, 0 deletions
diff --git a/NetworkPkg/NetworkPkg.uni b/NetworkPkg/NetworkPkg.uni
index 6d0fa67c6f..c0bbbd3ee1 100644
--- a/NetworkPkg/NetworkPkg.uni
+++ b/NetworkPkg/NetworkPkg.uni
@@ -111,3 +111,14 @@
#string STR_gEfiNetworkPkgTokenSpaceGuid_PcdHttpIoTimeout_HELP #language en-US "This value is used to configure the request and response timeout when getting "
"the recovery image from the remote source during an HTTP recovery boot."
"The default value set is 5 seconds."
+
+#string STR_gEfiNetworkPkgTokenSpaceGuid_PcdHttpDnsRetryInterval_PROMPT #language en-US "Retry Interval of HTTP DNS"
+
+#string STR_gEfiNetworkPkgTokenSpaceGuid_PcdHttpDnsRetryInterval_HELP #language en-US "This value is used to configure the retry Interval of HTTP DNS."
+ "The default value set is 0 second. If the value is less than"
+ "DNS_DEFAULT_TIMEOUT, then use the DNS_DEFAULT_TIMEOUT."
+
+#string STR_gEfiNetworkPkgTokenSpaceGuid_PcdHttpDnsRetryCount_PROMPT #language en-US "Retry Count of HTTP DNS"
+
+#string STR_gEfiNetworkPkgTokenSpaceGuid_PcdHttpDnsRetryCount_HELP #language en-US "This value is used to configure the Retry Count of HTTP DNS if "
+ "no DNS response received after Retry Interval. The default value set is 0."