Implement dummy RemoteAddr on client conn

This commit is contained in:
Zoltán Papp
2024-07-10 10:12:49 +02:00
parent 1f95467b02
commit e0d086a8a8
3 changed files with 15 additions and 2 deletions

View File

@@ -31,6 +31,7 @@ func Dial(address string) (net.Conn, error) {
if resp.Body != nil {
_ = resp.Body.Close()
}
conn := NewConn(wsConn)
return conn, nil
}