2016-09-23 20:43:03 +00:00
|
|
|
// Copyright 2016 go-dockerclient authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2017-08-10 16:19:19 +00:00
|
|
|
// +build !windows
|
|
|
|
|
2016-09-23 20:43:03 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
2017-02-15 01:34:05 +00:00
|
|
|
"context"
|
2016-09-23 20:43:03 +00:00
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
// initializeNativeClient initializes the native Unix domain socket client on
|
|
|
|
// Unix-style operating systems
|
|
|
|
func (c *Client) initializeNativeClient() {
|
|
|
|
if c.endpointURL.Scheme != unixProtocol {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
socketPath := c.endpointURL.Path
|
2017-08-10 16:19:19 +00:00
|
|
|
tr := defaultTransport()
|
2016-09-23 20:43:03 +00:00
|
|
|
tr.Dial = func(network, addr string) (net.Conn, error) {
|
2017-08-10 16:19:19 +00:00
|
|
|
return c.Dialer.Dial(unixProtocol, socketPath)
|
2017-02-15 01:34:05 +00:00
|
|
|
}
|
|
|
|
tr.DialContext = func(ctx context.Context, network, addr string) (net.Conn, error) {
|
2016-09-23 20:43:03 +00:00
|
|
|
return c.Dialer.Dial(unixProtocol, socketPath)
|
|
|
|
}
|
2017-11-14 23:27:57 +00:00
|
|
|
c.HTTPClient.Transport = tr
|
2016-09-23 20:43:03 +00:00
|
|
|
}
|