mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-16 12:35:54 +00:00
18 lines
301 B
Go
18 lines
301 B
Go
|
|
package tun
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Stack interface implement ip protocol stack, bridging raw network packets and data streams
|
||
|
|
type Stack interface {
|
||
|
|
Start() error
|
||
|
|
Close() error
|
||
|
|
}
|
||
|
|
|
||
|
|
// StackOptions for the stack implementation
|
||
|
|
type StackOptions struct {
|
||
|
|
Tun Tun
|
||
|
|
IdleTimeout time.Duration
|
||
|
|
}
|