mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-06-03 11:37:39 +00:00
10 lines
174 B
Go
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
|
|
}
|