mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-02 19:37:40 +03:00
9 lines
126 B
Go
9 lines
126 B
Go
//go:build !with_lwip
|
|
|
|
package tun
|
|
|
|
func NewLWIP(
|
|
options StackOptions,
|
|
) (Stack, error) {
|
|
return nil, ErrLWIPNotIncluded
|
|
}
|