[#31] network: Remove unused dial functions

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
support/v0.27
Leonard Lyubich 2020-09-17 12:03:10 +03:00 committed by Alex Vanin
parent 121137c62b
commit d6a4965841
1 changed files with 0 additions and 26 deletions

View File

@ -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)
}