mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: weird residue caused by merging conflict
This commit is contained in:
parent
fdcc16392c
commit
78efe15acf
2 changed files with 3 additions and 12 deletions
|
@ -53,7 +53,7 @@ func UClient(conn net.Conn, config *Config, clientHelloID ClientHelloID, pskExte
|
|||
}
|
||||
tlsConn := Conn{conn: conn, config: config, isClient: true}
|
||||
handshakeState := PubClientHandshakeState{C: &tlsConn, Hello: &PubClientHelloMsg{}}
|
||||
uconn := UConn{Conn: &tlsConn, ClientHelloID: clientHelloID, pskExtension: pskExtension, HandshakeState: handshakeState}
|
||||
uconn := UConn{Conn: &tlsConn, ClientHelloID: clientHelloID, HandshakeState: handshakeState}
|
||||
uconn.HandshakeState.uconn = &uconn
|
||||
uconn.handshakeFn = uconn.clientHandshake
|
||||
uconn.sessionController = newSessionController(&uconn)
|
||||
|
|
13
u_parrots.go
13
u_parrots.go
|
@ -21,17 +21,8 @@ var ErrUnknownClientHelloID = errors.New("tls: unknown ClientHelloID")
|
|||
// UTLSIdToSpec converts a ClientHelloID to a corresponding ClientHelloSpec.
|
||||
//
|
||||
// Exported internal function utlsIdToSpec per request.
|
||||
func UTLSIdToSpec(id ClientHelloID, pskExtension ...*FakePreSharedKeyExtension) (ClientHelloSpec, error) {
|
||||
if len(pskExtension) > 1 {
|
||||
return ClientHelloSpec{}, errors.New("tls: at most one FakePreSharedKeyExtensions is allowed")
|
||||
}
|
||||
|
||||
chs, err := utlsIdToSpec(id)
|
||||
if err != nil && errors.Is(err, ErrUnknownClientHelloID) {
|
||||
chs, err = utlsIdToSpecWithPSK(id, pskExtension...)
|
||||
}
|
||||
|
||||
return chs, err
|
||||
func UTLSIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
|
||||
return utlsIdToSpec(id)
|
||||
}
|
||||
|
||||
func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue