Files
sing-box/experimental/libbox/ssh_shell.go
T
2026-05-31 18:04:47 +08:00

10 lines
174 B
Go

package libbox
type ShellSession interface {
MasterFD() int32
Resize(rows int32, cols int32) error
Signal(signal int32) error
WaitExit() (int32, error)
Close() error
}