Merge pull request #156 from yudai/max_conn

Fix max connection enforcement
This commit is contained in:
Iwasaki Yudai 2017-08-08 00:46:08 -07:00 committed by GitHub
commit 1b7f41ca6f

View File

@ -315,7 +315,7 @@ func (app *App) handleWS(w http.ResponseWriter, r *http.Request) {
connections := atomic.AddInt64(app.connections, 1)
if int64(app.options.MaxConnection) != 0 {
if connections >= int64(app.options.MaxConnection) {
if connections > int64(app.options.MaxConnection) {
log.Printf("Reached max connection: %d", app.options.MaxConnection)
return
}