You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
400 B
Go
16 lines
400 B
Go
6 years ago
|
package grpchijack
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
|
||
|
controlapi "github.com/moby/buildkit/api/services/control"
|
||
|
"google.golang.org/grpc/metadata"
|
||
|
)
|
||
|
|
||
|
// Hijack hijacks session to a connection.
|
||
|
func Hijack(stream controlapi.Control_SessionServer) (net.Conn, <-chan struct{}, map[string][]string) {
|
||
|
md, _ := metadata.FromIncomingContext(stream.Context())
|
||
|
c, closeCh := streamToConn(stream)
|
||
|
return c, closeCh, md
|
||
|
}
|