tun.go 221 B

12345678910111213
  1. package tun
  2. // Tun interface implements tun interface interaction
  3. type Tun interface {
  4. Start() error
  5. Close() error
  6. }
  7. // TunOptions for tun interface implementation
  8. type TunOptions struct {
  9. Name string
  10. MTU uint32
  11. }