mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
🚑 fix: code broken after merging
Signed-off-by: Gaukas Wang <i@gaukas.wang>
This commit is contained in:
parent
8680818a98
commit
5796f9738a
6 changed files with 58 additions and 51 deletions
|
@ -171,9 +171,12 @@ func (c *Conn) readClientHello(ctx context.Context) (*clientHelloMsg, error) {
|
|||
c.in.version = c.vers
|
||||
c.out.version = c.vers
|
||||
|
||||
if c.config.MinVersion == 0 && c.vers < VersionTLS12 {
|
||||
tls10server.IncNonDefault()
|
||||
}
|
||||
// [UTLS SECTION BEGIN]
|
||||
// Disable unsupported godebug package
|
||||
// if c.config.MinVersion == 0 && c.vers < VersionTLS12 {
|
||||
// tls10server.IncNonDefault()
|
||||
// }
|
||||
// [UTLS SECTION END]
|
||||
|
||||
return clientHello, nil
|
||||
}
|
||||
|
@ -373,9 +376,12 @@ func (hs *serverHandshakeState) pickCipherSuite() error {
|
|||
}
|
||||
c.cipherSuite = hs.suite.id
|
||||
|
||||
if c.config.CipherSuites == nil && rsaKexCiphers[hs.suite.id] {
|
||||
tlsrsakex.IncNonDefault()
|
||||
}
|
||||
// [UTLS SECTION BEGIN]
|
||||
// Disable unsupported godebug package
|
||||
// if c.config.CipherSuites == nil && rsaKexCiphers[hs.suite.id] {
|
||||
// tlsrsakex.IncNonDefault()
|
||||
// }
|
||||
// [UTLS SECTION END]
|
||||
|
||||
for _, id := range hs.clientHello.cipherSuites {
|
||||
if id == TLS_FALLBACK_SCSV {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue