mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-14 18:09:05 +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
|
||
|
|
}
|