| 1234567891011121314151617 |
- 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
- }
|