5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 09:32:32 +00:00

fix bug in session api code

This commit is contained in:
Arceliar 2019-06-29 19:25:34 -05:00
parent b8592669b8
commit fbe44ea973

View File

@ -213,7 +213,7 @@ func (c *Core) GetSessions() []Session {
for _, sinfo := range c.sessions.sinfos { for _, sinfo := range c.sessions.sinfos {
var session Session var session Session
workerFunc := func() { workerFunc := func() {
session := Session{ session = Session{
Coords: append([]byte{}, sinfo.coords...), Coords: append([]byte{}, sinfo.coords...),
MTU: sinfo.getMTU(), MTU: sinfo.getMTU(),
BytesSent: sinfo.bytesSent, BytesSent: sinfo.bytesSent,