mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-06-29 04:01:23 +00:00
9 lines
174 B
Go
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
|
|
}
|