Hey, before i compile i want to find the file where the delay for the eggdrop is set by default its on 2 i want to change this to 0 where is the source file?
The delay you are referring to is a define in the server module. The default is 2 seconds. To change it:
1. Edit src/mod/server.mod/server.c
2. Change "#define msgrate 2" to whatever delay you want.
3. Recompile modules.
Clip from server.mod/server.c:
/* Number of seconds to wait between transmitting queued lines to the server
* lower this value at your own risk. ircd is known to start flood control
* at 512 bytes/2 seconds.
*/
#define msgrate 2