blob: 0885506673bd2e45e013a503d7f6037f8351dec1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build remoteclient
package adapter
import (
"github.com/containers/libpod/cmd/podman/remoteclientconfig"
"github.com/containers/libpod/libpod"
)
func newBridgeConnection(formattedBridge string, remoteConn *remoteclientconfig.RemoteConnection, logLevel string) (*Endpoint, error) {
// TODO
// Unix and Windows appear to quote their ssh implementations differently therefore once we figure out what
// windows ssh is doing here, we can then get the format correct.
return nil, libpod.ErrNotImplemented
}
|