diff options
author | Saloni Kasbekar <saloni.kasbekar@intel.com> | 2022-12-16 18:52:32 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-03-13 00:34:01 +0000 |
commit | cd397f16a5b74692a8438a65c613edced3a09263 (patch) | |
tree | 8f8bfddd041d3150ef48076f404da8bd1084e9cf | |
parent | 592ff1e98fc5d4a0e217d0420af7a8025e1a8213 (diff) | |
download | edk2-cd397f16a5b74692a8438a65c613edced3a09263.zip edk2-cd397f16a5b74692a8438a65c613edced3a09263.tar.gz edk2-cd397f16a5b74692a8438a65c613edced3a09263.tar.bz2 |
NetworkPkg/HttpBootDxe: Added ProxyUri field to HTTP_BOOT_PRIVATE_DATA.
Update HTTP_BOOT_PRIVATE_DATA structure to include ProxyUri
Signed-off-by: Saloni Kasbekar <saloni.kasbekar@intel.com>
-rw-r--r-- | NetworkPkg/HttpBootDxe/HttpBootDxe.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/NetworkPkg/HttpBootDxe/HttpBootDxe.h b/NetworkPkg/HttpBootDxe/HttpBootDxe.h index 193235d..07799a6 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootDxe.h +++ b/NetworkPkg/HttpBootDxe/HttpBootDxe.h @@ -226,6 +226,12 @@ struct _HTTP_BOOT_PRIVATE_DATA { VOID *FilePathUriParser;
//
+ // URI string for the Proxy host if BootFileUri contains a Proxy
+ // URI in the path
+ //
+ CHAR8 *ProxyUri;
+
+ //
// Cached HTTP data
//
LIST_ENTRY CacheList;
|