| 40 | ) |
| 41 | |
| 42 | type netTun struct { |
| 43 | ep *channel.Endpoint |
| 44 | stack *stack.Stack |
| 45 | events chan tun.Event |
| 46 | notifyHandle *channel.NotificationHandle |
| 47 | incomingPacket chan *buffer.View |
| 48 | mtu int |
| 49 | dnsServers []netip.Addr |
| 50 | hasV4, hasV6 bool |
| 51 | } |
| 52 | |
| 53 | type Net netTun |
| 54 |
nothing calls this directly
no outgoing calls
no test coverage detected