Files
tun2socks/core/lwip_other.go
2019-07-16 11:37:52 +08:00

14 lines
163 B
Go

// +build linux darwin
package core
/*
#cgo CFLAGS: -I./c/include
#include "lwip/init.h"
*/
import "C"
func lwipInit() {
C.lwip_init() // Initialze modules.
}