4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-07-04 15:57:47 +00:00

correctly clean up various things

This commit is contained in:
Arceliar
2019-01-22 21:48:43 -06:00
parent eb8951081d
commit f936151f2d
2 changed files with 12 additions and 4 deletions

View File

@ -294,8 +294,8 @@ func (iface *tcpInterface) handler(sock net.Conn, incoming bool) {
panic(err)
}
iface.core.log.Println("DEBUG: starting handler for", name)
link.handler()
iface.core.log.Println("DEBUG: stopped handler for", name)
err = link.handler()
iface.core.log.Println("DEBUG: stopped handler for", name, err)
}
// This exchanges/checks connection metadata, sets up the peer struct, sets up the writer goroutine, and then runs the reader within the current goroutine.