17 lines
335 B
C
17 lines
335 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/* 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' };
|
|
|
|
|