gobwas / ws

Tiny WebSocket library for Go.
MIT License
6.1k stars 373 forks source link

readme example problem #180

Open amirhoseinjfri opened 1 year ago

amirhoseinjfri commented 1 year ago

hi in the readme example when i put defer c.Close() in anonymous function try to say user disconnected like this:

defer func(){
    log.Println("dc")
    c.Close()
}()

nothing happen when user press disconnect or even when they lose connection . thanks

cristaloleg commented 1 year ago

Hey, do you have a full reproducer? Thanks.