Explorar el Código

[bugfix] lost packet due to some irc client sending extra packets before auth

B Thibault hace 8 años
padre
commit
90930176a7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      srv/src/httpServ.js

+ 1 - 1
srv/src/httpServ.js

@@ -61,7 +61,7 @@ function Server() {
                 if (errSocks.indexOf(sock.id) !== -1) {
                     sock.destroy(err);
                 }
-            }, 1);
+            }, 1000);
         }
     });