Skip to content

Commit

Permalink
Allow wildcards in hostname
Browse files Browse the repository at this point in the history
This enables certain local network recovery stories. May
re-evaluate as those stories change.
  • Loading branch information
Bret Barkelew authored and Bret Barkelew committed Mar 15, 2021
1 parent 44263b9 commit d0c7733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetworkPkg/HttpDxe/HttpsSupport.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ TlsConfigureSession (
//
HttpInstance->TlsConfigData.ConnectionEnd = EfiTlsClient;
HttpInstance->TlsConfigData.VerifyMethod = EFI_TLS_VERIFY_PEER;
HttpInstance->TlsConfigData.VerifyHost.Flags = EFI_TLS_VERIFY_FLAG_NO_WILDCARDS;
HttpInstance->TlsConfigData.VerifyHost.Flags = EFI_TLS_VERIFY_FLAG_NONE; // MU_CHANGE - Allow wildcards in the hostname.
HttpInstance->TlsConfigData.VerifyHost.HostName = HttpInstance->RemoteHost;
HttpInstance->TlsConfigData.SessionState = EfiTlsSessionNotStarted;

Expand Down

0 comments on commit d0c7733

Please sign in to comment.