mirror of https://github.com/status-im/consul.git
25 lines
457 B
Go
25 lines
457 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package ports
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
type troubleShootTcp struct {
|
|
}
|
|
|
|
func (tcp *troubleShootTcp) dialPort(hostPort *hostPort) error {
|
|
address := net.JoinHostPort(hostPort.host, hostPort.port)
|
|
|
|
// Attempt to establish a TCP connection with a timeout.
|
|
conn, err := net.DialTimeout("tcp", address, 5*time.Second)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer conn.Close()
|
|
return nil
|
|
}
|