sing-box/experimental/libbox/ssh_shell.go
2026-06-25 17:38:51 +08:00

9 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
}