mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
32 lines
626 B
Go
32 lines
626 B
Go
|
// +build windows
|
||
|
|
||
|
package windows
|
||
|
|
||
|
import (
|
||
|
"github.com/microsoft/hcsshim"
|
||
|
)
|
||
|
|
||
|
// TtyConsole is for when using a container interactively
|
||
|
type TtyConsole struct {
|
||
|
id string
|
||
|
processid uint32
|
||
|
}
|
||
|
|
||
|
func NewTtyConsole(id string, processid uint32) *TtyConsole {
|
||
|
tty := &TtyConsole{
|
||
|
id: id,
|
||
|
processid: processid,
|
||
|
}
|
||
|
return tty
|
||
|
}
|
||
|
|
||
|
func (t *TtyConsole) Resize(h, w int) error {
|
||
|
// TODO Windows: This is not implemented in HCS. Needs plumbing through
|
||
|
// along with mechanism for buffering
|
||
|
return hcsshim.ResizeConsoleInComputeSystem(t.id, t.processid, h, w)
|
||
|
}
|
||
|
|
||
|
func (t *TtyConsole) Close() error {
|
||
|
return nil
|
||
|
}
|