mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-15 13:10:28 +00:00
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
// +build mobile,darwin
|
|
|
|
package yggdrasil
|
|
|
|
/*
|
|
#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 (
|
|
"errors"
|
|
"unsafe"
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
func (c *Core) AWDLCreateInterface(name, local, remote string) error {
|
|
fromAWDL := make(chan []byte, 32)
|
|
toAWDL := make(chan []byte, 32)
|
|
if intf, err := c.awdl.create(fromAWDL, toAWDL, name, local, remote); err != nil || intf == nil {
|
|
c.log.Println("c.awdl.create:", err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Core) AWDLShutdownInterface(name string) error {
|
|
return c.awdl.shutdown(name)
|
|
}
|
|
|
|
func (c *Core) AWDLRecvPacket(identity string) ([]byte, error) {
|
|
if intf := c.awdl.getInterface(identity); intf != nil {
|
|
return <-intf.rwc.toAWDL, nil
|
|
}
|
|
return nil, errors.New("AWDLRecvPacket identity not known: " + identity)
|
|
}
|
|
|
|
func (c *Core) AWDLSendPacket(identity string, buf []byte) error {
|
|
packet := append(util.GetBytes(), buf[:]...)
|
|
if intf := c.awdl.getInterface(identity); intf != nil {
|
|
intf.rwc.fromAWDL <- packet
|
|
return nil
|
|
}
|
|
return errors.New("AWDLSendPacket identity not known: " + identity)
|
|
}
|