mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
15 lines
206 B
Go
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
|
|
}
|