From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web11.84900.1670008354257768666 for ; Fri, 02 Dec 2022 11:12:37 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=K2KNpiNg; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: saloni.kasbekar@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1670008357; x=1701544357; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=0+yzjQFbsjOysE6KypLnBLbRRidbPJtNMqTfTS8ycuY=; b=K2KNpiNgfyUwXty5K2RKq7Ki8XpfjjASrdEwwdZyMY5eb8qlGiVHuXvK 3V/xQmp+4AtVo4RyRon5ahiNUYr22CPGNujAdUfZeU6JL0m78XkLT/V+i 0QFXqwUCDurqQ63qVSH1kmkJQ2OZdHCOrbnDEFleMjiq3+On84LBVA99L YF3NI/hMksPct6fMfBYm85TdXj7ZujILY2KynkgzqwE0+/THDaE6m4lPp CcZjc72pGL+XzHJztf1Pe0e1+ExAmTaYxJkfastaJ//nqi1l4ASpUFofu ewf+TXkuTufFoDA/VPFLhdNMFetv/IGcMLmp3G4yYZDHtgoJTip0weH8p A==; X-IronPort-AV: E=McAfee;i="6500,9779,10549"; a="296382569" X-IronPort-AV: E=Sophos;i="5.96,213,1665471600"; d="scan'208";a="296382569" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Dec 2022 11:12:36 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10549"; a="733916666" X-IronPort-AV: E=Sophos;i="5.96,213,1665471600"; d="scan'208";a="733916666" Received: from fmbiosdev02.amr.corp.intel.com ([10.80.127.10]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Dec 2022 11:12:36 -0800 From: "Saloni Kasbekar" To: devel@edk2.groups.io Cc: Saloni Kasbekar , Zhiguang Liu , Michael D Kinney , Liming Gao , Maciej Rabeda Subject: [edk2-staging/HttpProxy PATCH v3 2/7] MdePkg/Include: Add Proxy Server URL in EFI_HTTP_REQUEST_DATA Date: Fri, 2 Dec 2022 11:12:21 -0800 Message-Id: <71d7eb44c188622e87c6373e1da9c3a1cbd80d48.1670008048.git.saloni.kasbekar@intel.com> X-Mailer: git-send-email 2.36.1.windows.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3951 Add Proxy Server URL to EFI_HTTP_REQUEST_DATA. This will be used when a Proxy Server URL is a part of the HTTP Boot device path. Cc: Zhiguang Liu Cc: Michael D Kinney Cc: Liming Gao Cc: Maciej Rabeda Signed-off-by: Saloni Kasbekar --- MdePkg/Include/Protocol/Http.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/Protocol/Http.h b/MdePkg/Include/Protocol/Http.h index 28e6221593..9ee08baa14 100644 --- a/MdePkg/Include/Protocol/Http.h +++ b/MdePkg/Include/Protocol/Http.h @@ -188,9 +188,17 @@ typedef struct { /// The URI of a remote host. From the information in this field, the HTTP instance /// will be able to determine whether to use HTTP or HTTPS and will also be able to /// determine the port number to use. If no port number is specified, port 80 (HTTP) - /// is assumed. See RFC 3986 for more details on URI syntax. + /// or 443 (HTTPS) is assumed. See RFC 3986 for more details on URI syntax. /// CHAR16 *Url; + /// + /// The URI of an Proxy Host. This field will be NULL if there is no Proxy Host + /// in the device path. From the information in this field, the HTTP instance will + /// be able to determine whether to use HTTP or HTTPS and will also be able to + /// determine the port number to use. If no port number is specified, port 80 (HTTP) + /// or 443 (HTTPS) is assumed. See RFC 3986 for more details on URI syntax. + /// + CHAR16 *ProxyUrl; } EFI_HTTP_REQUEST_DATA; /// -- 2.36.1.windows.1