sing-tun/lwip_stub.go
2022-08-07 17:15:40 +08:00

15 lines
206 B
Go

//go:build !with_lwip
package tun
import "context"
func NewLWIP(
ctx context.Context,
tun Tun,
tunMtu uint32,
udpTimeout int64,
handler Handler,
) (Stack, error) {
return nil, ErrLWIPNotIncluded
}