forked from TrueCloudLab/frostfs-node
[#31] network: Remove unused dial functions
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
121137c62b
commit
d6a4965841
1 changed files with 0 additions and 26 deletions
|
@ -1,26 +0,0 @@
|
|||
package network
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net"
|
||||
"time"
|
||||
|
||||
manet "github.com/multiformats/go-multiaddr-net"
|
||||
)
|
||||
|
||||
// Dial connects to a remote node by address.
|
||||
func Dial(ctx context.Context, addr Address) (net.Conn, error) {
|
||||
return dialContext(ctx, addr, 0)
|
||||
}
|
||||
|
||||
// DialWithTimeout connects to a remote node by address with timeout.
|
||||
func DialWithTimeout(ctx context.Context, addr Address, timeout time.Duration) (net.Conn, error) {
|
||||
return dialContext(ctx, addr, timeout)
|
||||
}
|
||||
|
||||
func dialContext(ctx context.Context, addr Address, timeout time.Duration) (net.Conn, error) {
|
||||
dialer := manet.Dialer{}
|
||||
dialer.Timeout = timeout
|
||||
|
||||
return dialer.DialContext(ctx, addr)
|
||||
}
|
Loading…
Reference in a new issue