mirror of https://github.com/acidanthera/audk.git
NetworkPkg/HttpBootDxe: Handle new #define in HttpBootDxe
Add a error message in HttpBootPrintErrorMessage for HTTP 308 Redirect. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hegde Nagaraj P <nagaraj-p.hegde@hpe.com> Reviewed-by: Sriram Subramanian <sriram-s@hpe.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
This commit is contained in:
parent
7dec14b78f
commit
406d1d92a8
|
@ -186,6 +186,10 @@ HttpBootPrintErrorMessage (
|
|||
|
||||
case HTTP_STATUS_307_TEMPORARY_REDIRECT:
|
||||
AsciiPrint ("\n Redirection: 307 Temporary Redirect");
|
||||
break;
|
||||
|
||||
case HTTP_STATUS_308_PERMANENT_REDIRECT:
|
||||
AsciiPrint ("\n Redirection: 308 Permanent Redirect");
|
||||
break;
|
||||
|
||||
case HTTP_STATUS_400_BAD_REQUEST:
|
||||
|
|
Loading…
Reference in New Issue