mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
20 lines
435 B
Go
20 lines
435 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"net/http"
|
||
|
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// 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)
|
||
|
|
||
|
return cli.setupHijackConn(req, proto)
|
||
|
}
|