5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-26 07:11:40 +00:00

use a buffered channel to avoid races, and run gofmt

This commit is contained in:
Arceliar 2018-11-25 17:59:36 -06:00
parent d253bb750c
commit a34ca40594
2 changed files with 2 additions and 2 deletions

View File

@ -738,7 +738,7 @@ func (a *admin) admin_dhtPing(keyString, coordString, targetString string) (dhtR
coords = append(coords, uint8(u64)) coords = append(coords, uint8(u64))
} }
} }
resCh := make(chan *dhtRes) resCh := make(chan *dhtRes, 1)
info := dhtInfo{ info := dhtInfo{
key: key, key: key,
coords: coords, coords: coords,