[go-nuts] strange failure of golang.org/x/crypto/argon2.IDKey

2020-01-02 Thread andre . kuehne . 77
I attached a minimal test program to reproduce an issue with golang.org/x/crypto/argon2. It calls IDKey twice with the same parameters. The first call executes, but during the second call the program crashes. Strange thing: The program does not always crash. If it crashes then I can call it m

[go-nuts] How to fill a map with requests from client

2020-01-02 Thread snk
I am a beginner in Golang, This is a TCP server that receives requests and sends back a hello message to the client attached with the client's message(name) *how can I fill those requests into a map without erasing the previous request?* this is the code, the request is appended to the map but