- Made IRCII_KLUDGE disappear :P

- Fixed SENDQ_ALWAYS to be mainstream define (as always)
This commit is contained in:
stskeeps 2000-06-23 18:24:12 +00:00
parent 5c87943196
commit 4a1cded0fd
4 changed files with 2 additions and 21 deletions

View file

@ -389,4 +389,5 @@
- Removed aHush, not in use
- Removed DISALLOW_MIXED_CASE and IGNORE_FIRST_CHAR, waste of space
- Made IDLE_FROM_MSG stock define
- Made IRCII_KLUDGE disappear :P
- Made IRCII_KLUDGE disappear :P
- Fixed SENDQ_ALWAYS to be mainstream define (as always)

View file

@ -455,9 +455,6 @@
*/
#define SOCKSPORT 6013
/* Define default Z:line time for SOCKS -taz */
#define ZLINE_TIME 300
/* STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP */
/* You shouldn't change anything below this line, unless absolutely needed. */
@ -561,16 +558,6 @@
*/
#define KILLCHASETIMELIMIT 90 /* Recommended value: 90 */
/*
* SendQ-Always causes the server to put all outbound data into the sendq and
* flushing the sendq at the end of input processing. This should cause more
* efficient write's to be made to the network.
* There *shouldn't* be any problems with this method.
* -avalon
*/
#define SENDQ_ALWAYS
/* ------------------------- END CONFIGURATION SECTION -------------------- */
#define MOTD MPATH
#define RULES RPATH

View file

@ -31,9 +31,6 @@ Computing Center and Jarkko Oikarinen";
* Option string. Must be before #ifdef DEBUGMODE.
*/
char serveropts[] = {
#ifdef SENDQ_ALWAYS
'A',
#endif
#ifdef CHROOTDIR
'c',
#endif

View file

@ -159,11 +159,7 @@ int send_queued(to)
** not working correct if send_queued is called for a
** dead socket... --msa
*/
#ifndef SENDQ_ALWAYS
return dead_link(to, "send_queued called for a DEADSOCKET:%s");
#else
return -1;
#endif
}
while (DBufLength(&to->sendQ) > 0)
{