mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
nss: update nss to hg rev 395a93dbc02e with vc2013 patch applied
This commit is contained in:
parent
50f657b9c7
commit
b0e724dc85
84 changed files with 14198 additions and 661 deletions
|
|
@ -1573,6 +1573,13 @@ tls13_HandleClientHelloPart2(sslSocket *ss,
|
|||
const sslNamedGroupDef *previousGroup = NULL;
|
||||
PRBool hrr = PR_FALSE;
|
||||
|
||||
/* If the legacy_version field is set to 0x300 or smaller,
|
||||
* reject the connection with protocol_version alert. */
|
||||
if (ss->clientHelloVersion <= SSL_LIBRARY_VERSION_3_0) {
|
||||
FATAL_ERROR(ss, SSL_ERROR_RX_MALFORMED_CLIENT_HELLO, protocol_version);
|
||||
goto loser;
|
||||
}
|
||||
|
||||
ss->ssl3.hs.endOfFlight = PR_TRUE;
|
||||
|
||||
if (ssl3_ExtensionNegotiated(ss, ssl_tls13_early_data_xtn)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue