Explorar el Código

* Don't process the HELP queue on connect bursts

Bryan Drewery hace 16 años
padre
commit
3dd45e295f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/mod/server.mod/server.c

+ 2 - 1
src/mod/server.mod/server.c

@@ -214,8 +214,9 @@ void deq_msg()
   }
   /* Never send anything from the help queue unless everything else is
    * finished.
+   * Don't process any help queue if connect bursting
    */
-  if (!hq.head || burst || nm)
+  if (!hq.head || burst || nm || connect_bursting)
     return;
   if (fast_deq(DP_HELP))
     return;