mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-12 08:29:00 +08:00

Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
32 lines
832 B
Go
32 lines
832 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package proxy
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type direct struct{}
|
|
|
|
// Direct implements Dialer by making network connections directly using net.Dial or net.DialContext.
|
|
var Direct = direct{}
|
|
|
|
var (
|
|
_ Dialer = Direct
|
|
_ ContextDialer = Direct
|
|
)
|
|
|
|
// Dial directly invokes net.Dial with the supplied parameters.
|
|
func (direct) Dial(network, addr string) (net.Conn, error) {
|
|
return net.Dial(network, addr)
|
|
}
|
|
|
|
// DialContext instantiates a net.Dialer and invokes its DialContext receiver with the supplied parameters.
|
|
func (direct) DialContext(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
var d net.Dialer
|
|
return d.DialContext(ctx, network, addr)
|
|
}
|