Fix Firefox-120 profile

This commit is contained in:
Amir Khan 2024-04-29 11:56:39 -04:00
parent 8f010b3932
commit c62bfcfb86

View file

@ -1241,6 +1241,7 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
0x0, // uncompressed 0x0, // uncompressed
}, },
}, },
&SessionTicketExtension{},
&ALPNExtension{ &ALPNExtension{
AlpnProtocols: []string{ AlpnProtocols: []string{
"h2", "h2",
@ -1287,6 +1288,9 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
PKCS1WithSHA1, PKCS1WithSHA1,
}, },
}, },
&PSKKeyExchangeModesExtension{[]uint8{
PskModeDHE,
}},
&FakeRecordSizeLimitExtension{ &FakeRecordSizeLimitExtension{
Limit: 0x4001, Limit: 0x4001,
}, },