Chat-O-Matic/protocols/irc/IrcConstants.h

28 lines
525 B
C
Raw Normal View History

2021-08-16 16:11:37 -05:00
#ifndef _IRC_CONSTANTS_H
#define _IRC_CONSTANTS_H
enum UserRole {
ROOM_MEMBER = 0,
ROOM_HALFOP = 1,
ROOM_OPERATOR = 2,
IRC_OPERATOR = 3
};
2021-08-10 09:33:00 -05:00
#define RPL_WELCOME 1
#define RPL_WHOISUSER 311
2021-08-10 09:33:00 -05:00
#define RPL_ENDOFWHO 315
#define RPL_ENDOFWHOIS 318
2021-08-10 09:33:00 -05:00
#define RPL_TOPIC 332
#define RPL_WHOREPLY 352
#define RPL_NAMREPLY 353
#define RPL_MOTD 372
#define RPL_MOTDSTART 375
#define RPL_ENDOFMOTD 376
#define ERR_NONICKNAMEGIVEN 431
#define ERR_ERRONEUSNICKNAME 432
#define ERR_NICKNAMEINUSE 433
2021-08-16 16:11:37 -05:00
#endif // _IRC_CONSTANTS_H