mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-17 13:05:57 +00:00
14 lines
221 B
Go
14 lines
221 B
Go
|
|
package tun
|
||
|
|
|
||
|
|
// Tun interface implements tun interface interaction
|
||
|
|
type Tun interface {
|
||
|
|
Start() error
|
||
|
|
Close() error
|
||
|
|
}
|
||
|
|
|
||
|
|
// TunOptions for tun interface implementation
|
||
|
|
type TunOptions struct {
|
||
|
|
Name string
|
||
|
|
MTU uint32
|
||
|
|
}
|