Fix intermittent issues with Randomized parrot (#19)

Fix intermittent issues with Randomized parrot
This commit is contained in:
sergeyfrolov 2019-02-04 13:41:38 -07:00 committed by GitHub
parent 323a55944c
commit 3fe91d9822
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View file

@ -500,8 +500,8 @@ func (uconn *UConn) SetUnderlyingConn(c net.Conn) {
uconn.Conn.conn = c
}
func (uconn *UConn) SetNetConn(c net.Conn) {
uconn.Conn.conn = c
func (uconn *UConn) GetUnderlyingConn() net.Conn {
return uconn.Conn.conn
}
// MakeConnWithCompleteHandshake allows to forge both server and client side TLS connections.