Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jovis7 committed Nov 28, 2024
1 parent 5e9b06c commit a00177a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tlslistener/clienthelloconn.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ func (rrc *clientHelloRecordingConn) processHello(info *tls.ClientHelloInfo) (*t
helloMsg := utls.UnmarshalClientHello(hello)

if helloMsg == nil {
return rrc.helloError("malformed ClientHello")
return nil, nil
//return rrc.helloError("malformed ClientHello")
}

sourceIP := rrc.RemoteAddr().(*net.TCPAddr).IP
Expand Down

0 comments on commit a00177a

Please sign in to comment.