2022-04-17 20:02:25 +03:00
|
|
|
//go:build ios
|
2022-01-30 22:48:32 +03:00
|
|
|
// +build ios
|
|
|
|
|
|
|
|
package mobile
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo CFLAGS: -x objective-c
|
|
|
|
#cgo LDFLAGS: -framework Foundation
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
void Log(const char *text) {
|
|
|
|
NSString *nss = [NSString stringWithUTF8String:text];
|
|
|
|
NSLog(@"%@", nss);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
import (
|
|
|
|
"unsafe"
|
2023-06-07 00:11:49 +03:00
|
|
|
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/tun"
|
2022-01-30 22:48:32 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type MobileLogger struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (nsl MobileLogger) Write(p []byte) (n int, err error) {
|
|
|
|
p = append(p, 0)
|
|
|
|
cstr := (*C.char)(unsafe.Pointer(&p[0]))
|
|
|
|
C.Log(cstr)
|
|
|
|
return len(p), nil
|
|
|
|
}
|
2023-06-07 00:11:49 +03:00
|
|
|
|
|
|
|
func (m *Yggdrasil) TakeOverTUN(fd int32) error {
|
|
|
|
options := []tun.SetupOption{
|
|
|
|
tun.FileDescriptor(fd),
|
|
|
|
tun.InterfaceMTU(m.iprwc.MTU()),
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
m.tun, err = tun.New(m.iprwc, m.logger, options...)
|
|
|
|
return err
|
|
|
|
}
|