This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

disabling the builtin queues?

Old posts that have not been replied to for several years.
Locked
D
Doberspand

disabling the builtin queues?

Post by Doberspand »

Is it possible to disable eggdrops builtin queues so it just sends everything right away? I know it might EXCESS FLOOD but I have taken care of that, so that wont be a problem.
g
guppy
eggdrop engineer
Posts: 199
Joined: Mon Sep 24, 2001 8:00 pm
Location: Canada
Contact:

Post by guppy »

edit the source luke!
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

To be more specific, edit the queue_server() function in src/mod/server.mod/server.c and modify it like this:

Code: Select all

  /* Don't even BOTHER if there's no server online. */
  if (serv < 0)
    return;

  tputs(serv, buf, len); /* THIS IS WHAT YOU ADD */
  return;

  /* No queue for PING and PONG - drummer */
Locked