Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Reader ¶
func Reader(r *bufio.Reader, output, errput *os.File, input *io.PipeWriter, resize chan remotecommand.TerminalSize) error
Reader decodes the content that comes over the wire and directs it to the proper destination.
Types ¶
type SocketDest ¶
type SocketDest int
SocketDest is the "key" to where IO should go on the varlink multiplexed socket
const ( // ToStdout indicates traffic should go stdout ToStdout SocketDest = iota // ToStdin indicates traffic came from stdin ToStdin SocketDest = iota // ToStderr indicates traffuc should go to stderr ToStderr SocketDest = iota // TerminalResize indicates a terminal resize event has occurred // and data should be passed to resizer TerminalResize SocketDest = iota // Quit and detach Quit SocketDest = iota )
func IntToSocketDest ¶
func IntToSocketDest(i int) SocketDest
IntToSocketDest returns a socketdest based on integer input
func (SocketDest) Int ¶
func (sd SocketDest) Int() int
Int returns the integer representation of the socket dest
type VirtWriteCloser ¶
type VirtWriteCloser struct {
// contains filtered or unexported fields
}
VirtWriteCloser are writers for attach which include the dest of the data
func NewVirtWriteCloser ¶
func NewVirtWriteCloser(w *bufio.Writer, dest SocketDest) VirtWriteCloser
NewVirtWriteCloser is a constructor
func (VirtWriteCloser) Close ¶
func (v VirtWriteCloser) Close() error
Close is a required method for a writecloser
Click to show internal directories.
Click to hide internal directories.