mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-25 01:40:30 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
19 lines
467 B
Go
19 lines
467 B
Go
package docker // import "docker.io/go-docker"
|
|
|
|
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)
|
|
}
|