#include #include /* RFC 1459 1.2 * 9 characters + nul terminator */ static int nickname[9 + 1]; /* RFC 1459 1.3 * 200 characters + nul terminator */ static int channel[200 + 1]; /* RFC 1459 1.3 * channel names cannot contain these characters */ static int channel_restricted[] = { 0x07, ' ', ',', '\0' };