]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/defines.h
defines.h: fix comment: "lenth" -> "length"
[ngircd-alex.git] / src / ngircd / defines.h
index 3f1122ca2fcaba6c93f502667a8ea0f5ffc73699..4bcb6aff8ce295ce9c39076cca0b9e0929e0aa2e 100644 (file)
@@ -9,7 +9,6 @@
  * Please read the file COPYING, README and AUTHORS for more information.
  */
 
-
 #ifndef __defines_h__
 #define __defines_h__
 
                                           see RFC 2812, section 1.2.1 */
 #define CLIENT_NAME_LEN 32             /* Max. length of "real names" */
 #define CLIENT_HOST_LEN 64             /* Max. host name length */
-#define CLIENT_MODE_LEN 9              /* Max. lenth of all client modes */
+#define CLIENT_MODE_LEN 16             /* Max. length of all client modes */
 #define CLIENT_INFO_LEN 64             /* Max. length of server info texts */
 #define CLIENT_AWAY_LEN 128            /* Max. length of away messages */
-#define CLIENT_FLAGS_LEN 100           /* Max. length of client flags */
+#define CLIENT_FLAGS_LEN 1           /* Max. length of client flags */
 
 #define CHANNEL_NAME_LEN 51            /* Max. length of a channel name, see
                                           RFC 2812 section 1.3 */
 
 #define READBUFFER_LEN 2048            /* Size of the read buffer of a
                                           connection in bytes. */
-#define WRITEBUFFER_LEN 4096           /* Size of the write buffer of a
+#define WRITEBUFFER_FLUSH_LEN 4096     /* Size of a write buffer that triggers
+                                          buffer flushing if more space is
+                                          needed for storing data. */
+#define WRITEBUFFER_MAX_LEN 32768      /* Maximum size of the write buffer of a
                                           connection in bytes. */
-#define WRITEBUFFER_SLINK_LEN 51200    /* Size of the write buffer of a
+#define WRITEBUFFER_SLINK_LEN 65536    /* Maximum size of the write buffer of a
                                           server link connection in bytes. */
 
 #define PROTOVER "0210"                        /* Implemented IRC protocol version,
@@ -80,8 +82,8 @@
 #define RECONNECT_DELAY 3              /* Time to delay re-connect attempts
                                           in seconds. */
 
-#define USERMODES "aciorswx"           /* Supported user modes. */
-#define CHANMODES "biIklmnoOPstvz"     /* Supported channel modes. */
+#define USERMODES "aciorRswx"          /* Supported user modes. */
+#define CHANMODES "biIklmnoOPRstvz"    /* Supported channel modes. */
 
 #define CONNECTED true                 /* Internal status codes. */
 #define DISCONNECTED false
 
 #endif
 
-
 /* -eof- */