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-11-14 23:27:57 +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"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Microsoft/go-winio"
|
|
|
|
)
|
|
|
|
|
|
|
|
const namedPipeConnectTimeout = 2 * time.Second
|
|
|
|
|
|
|
|
type pipeDialer struct {
|
|
|
|
dialFunc func(network, addr string) (net.Conn, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p pipeDialer) Dial(network, address string) (net.Conn, error) {
|
|
|
|
return p.dialFunc(network, address)
|
|
|
|
}
|
|
|
|
|
|
|
|
// initializeNativeClient initializes the native Named Pipe client for Windows
|
|
|
|
func (c *Client) initializeNativeClient() {
|
|
|
|
if c.endpointURL.Scheme != namedPipeProtocol {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
namedPipePath := c.endpointURL.Path
|
|
|
|
dialFunc := func(network, addr string) (net.Conn, error) {
|
|
|
|
timeout := namedPipeConnectTimeout
|
|
|
|
return winio.DialPipe(namedPipePath, &timeout)
|
|
|
|
}
|
2017-08-10 16:19:19 +00:00
|
|
|
tr := defaultTransport()
|
2016-09-23 20:43:03 +00:00
|
|
|
tr.Dial = dialFunc
|
2017-02-15 01:34:05 +00:00
|
|
|
tr.DialContext = func(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
|
|
return dialFunc(network, addr)
|
|
|
|
}
|
2016-09-23 20:43:03 +00:00
|
|
|
c.Dialer = &pipeDialer{dialFunc}
|
2017-11-14 23:27:57 +00:00
|
|
|
c.HTTPClient.Transport = tr
|
2016-09-23 20:43:03 +00:00
|
|
|
}
|