Browse Source

* Don't process the HELP queue on connect bursts

Bryan Drewery 16 năm trước cách đây
mục cha
commit
3dd45e295f
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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;