mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
chore: comment fix
This commit is contained in:
parent
31dca9476d
commit
00841504b7
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ func (rc *reconnectableClientImpl) TCP(addr string) (net.Conn, error) {
|
|||
return nil, coreErrs.ClosedError{}
|
||||
}
|
||||
if rc.client == nil {
|
||||
// First time
|
||||
// No active connection, connect first
|
||||
if err := rc.reconnect(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -86,7 +86,7 @@ func (rc *reconnectableClientImpl) UDP() (HyUDPConn, error) {
|
|||
return nil, coreErrs.ClosedError{}
|
||||
}
|
||||
if rc.client == nil {
|
||||
// First time
|
||||
// No active connection, connect first
|
||||
if err := rc.reconnect(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue