2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2017-05-15 15:59:15 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2017-05-15 15:59:15 -04:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DialSession returns a connection that can be used communication with daemon
|
|
|
|
func (cli *Client) DialSession(ctx context.Context, proto string, meta map[string][]string) (net.Conn, error) {
|
|
|
|
req, err := http.NewRequest("POST", "/session", nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
req = cli.addHeaders(req, meta)
|
|
|
|
|
2018-03-19 04:33:06 -04:00
|
|
|
return cli.setupHijackConn(ctx, req, proto)
|
2017-05-15 15:59:15 -04:00
|
|
|
}
|