sing-tun/lwip_stub.go
2022-09-08 18:11:26 +08:00

9 lines
126 B
Go

//go:build !with_lwip
package tun
func NewLWIP(
options StackOptions,
) (Stack, error) {
return nil, ErrLWIPNotIncluded
}