From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web08.392.1663797121780520189 for ; Wed, 21 Sep 2022 14:52:05 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=UUFvv5kG; spf=pass (domain: intel.com, ip: 192.55.52.120, 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=1663797125; x=1695333125; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Aems9d4hE0orCrq4XwMGH0StwxFbGyJkn6Loa9F50TI=; b=UUFvv5kG1/yYZW3MkvH8C/ToGQIT74HfTUEFRFK36BHECq9Qnx0Bl96c N85anZTTOQbj7PtGo4yP+46HCNLLxuhMA7W5LuuzLqdF3bCNSuHceKOVj +Q16uyCZ9YqHCJGUO59pvLKle8+AGd8EJdMglvLtjf028UKzjXkGMlLYh HXKI/obALfUUyq+Tpd2tTVjcEkDiFRL7Mqmemx5GWYhtNwiWoNO+jyHW7 9NqTnQz1lMwHY5DQs3KONicj4RMhRDxmKqpV+WWfOE64TeU7aFy6+t2a4 9m4xWGw8wzgpD1TuW4rVENlreCH98me5wcEk4n6RPcdMePjymCnJXboPz A==; X-IronPort-AV: E=McAfee;i="6500,9779,10477"; a="298850807" X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="298850807" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2022 14:52:04 -0700 X-IronPort-AV: E=Sophos;i="5.93,334,1654585200"; d="scan'208";a="597172809" Received: from fmbiosdev02.amr.corp.intel.com ([10.80.127.10]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2022 14:52:04 -0700 From: "Saloni Kasbekar" To: devel@edk2.groups.io Cc: Saloni Kasbekar , Zhiguang Liu , Michael D Kinney , Liming Gao Subject: [[edk2-staging/HttpProxy] 1/3] MdePkg/Include: Add the EndPoint Server's URL in HTTP Request Data Date: Wed, 21 Sep 2022 14:51:49 -0700 Message-Id: X-Mailer: git-send-email 2.36.1.windows.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add EndPoint Server URL to HTTP Request Data to be used when a Proxy Server URL is a part of the device path Cc: Zhiguang Liu Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Saloni Kasbekar --- MdePkg/Include/Protocol/Http.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MdePkg/Include/Protocol/Http.h b/MdePkg/Include/Protocol/Http.h index 28e6221593..4f77220587 100644 --- a/MdePkg/Include/Protocol/Http.h +++ b/MdePkg/Include/Protocol/Http.h @@ -191,6 +191,11 @@ typedef struct { /// is assumed. See RFC 3986 for more details on URI syntax. /// CHAR16 *Url; + /// + /// The URI of an endpoint host if the Url field contains the address of a proxy server. + /// This field will be NULL if there is no proxy server in the device path. + /// + CHAR16 *EndPointUrl; } EFI_HTTP_REQUEST_DATA; /// -- 2.36.1.windows.1