4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-07-30 23:33:44 +00:00
This commit is contained in:
Neil Alexander
2019-01-04 17:23:37 +00:00
parent f29a098488
commit 3878197a59

View File

@@ -2,6 +2,7 @@ package yggdrasil
import (
"sync"
"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
)
@@ -40,7 +41,7 @@ func (l *awdl) create(boxPubKey *crypto.BoxPubKey, sigPubKey *crypto.SigPubKey,
l.mutex.Lock()
l.interfaces[name] = &intf
l.mutex.Unlock()
intf.peer.linkOut = make(chan []byte, 1) // protocol traffic
intf.peer.linkOut = make(chan []byte, 1)
intf.peer.out = func(msg []byte) {
defer func() { recover() }()
intf.send <- msg