mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-02 19:37:40 +03:00
11 lines
236 B
Go
11 lines
236 B
Go
//go:build !with_lwip
|
|
|
|
package tun
|
|
|
|
import E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
func NewLWIP(
|
|
options StackOptions,
|
|
) (Stack, error) {
|
|
return nil, E.New(`LWIP is not included in this build, rebuild with -tags with_lwip`)
|
|
}
|