Remove CKR from src/yggdrasil (it will be moved into tuntap)

This commit is contained in:
Neil Alexander 2019-04-23 10:28:40 +01:00
parent 2bee3cd7ca
commit 870b2b6a2e
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
4 changed files with 2 additions and 419 deletions

View file

@ -43,7 +43,6 @@ type router struct {
out func([]byte) // packets we're sending to the network, link to peer's "in"
reset chan struct{} // signal that coords changed (re-init sessions/dht)
admin chan func() // pass a lambda for the admin socket to query stuff
cryptokey cryptokey
nodeinfo nodeinfo
}
@ -97,7 +96,6 @@ func (r *router) init(core *Core) {
r.core.config.Mutex.RLock()
r.nodeinfo.setNodeInfo(r.core.config.Current.NodeInfo, r.core.config.Current.NodeInfoPrivacy)
r.core.config.Mutex.RUnlock()
r.cryptokey.init(r.core)
}
// Starts the mainLoop goroutine.