shithub: ircd

ref: c86384b841687ea975571db934fb0e353ce5b5d4
dir: /cmd.h/

View raw version
Reply Rwelcome = {
	.nr = 001,
	.msg = ":Welcome to the Internet Relay Network %I",
};

Reply Ryourhost = {
	.nr = 002,
	.msg = "Your host is %s, running version %s",
};

Reply Rcreated = {
	.nr = 003,
	.msg = "This server was created %s",
};

Reply Rmyinfo = {
	.nr = 004,
	.msg = "%s %s %s %s",
};

Reply Raway = {
	.nr = 301,
	.msg = "%s :%s",
};

Reply Runaway = {
	.nr = 305,
	.msg = ":You are no longer marked as being away",
};

Reply Rnowaway = {
	.nr = 306,
	.msg = ":You have been marked as being away",
};

Reply Rwhoisuser = {
	.nr = 311,
	.msg = "%s %s %s * :%s",
};

Reply Rendofwhois = {
	.nr = 318,
	.msg = "%s :End of WHOIS list",
};

Reply Rnotopic = {
	.nr = 331,
	.msg = "%s :No topic is set",
};

Reply Rtopic = {
	.nr = 332,
	.msg = "%s :%s",
};

Reply Rversion = {
	.nr = 351,
	.msg = "%s",
};

Reply Rnamreply = {
	.nr = 353,
	.msg = "%c %s :%s",
};

Reply Rendofnames = {
	.nr = 366,
	.msg = "%s :End of NAMES list",
};

Reply Rmotd = {
	.nr = 372,
	.msg = ":- some motd",
};

Reply Rmotdstart = {
	.nr = 375,
	.msg = ":- %s Message of the day - ",
};

Reply Rmotdend = {
	.nr = 376,
	.msg = ":End of MOTD command",
};

Reply Enosuchnick = {
	.nr = 401,
	.msg = "%s :No such nick/channel",
};

Reply Enosuchserver = {
	.nr = 402,
	.msg = "%s :No such server",
};

Reply Enosuchchannel = {
	.nr = 403,
	.msg = "%s :No such channel",
};

Reply Ecannotsendtochan = {
	.nr = 404,
	.msg = "%s :Cannot send to channel",
};

Reply Enorecipient = {
	.nr = 411,
	.msg = ":No recipient given (%s)",
};

Reply Enotexttosend = {
	.nr = 412,
	.msg = ":No text to send",
};

Reply Enonicknamegiven = {
	.nr = 431,
	.msg = ":No nickname given",
};

Reply Enicknameinuse = {
	.nr = 433,
	.msg = "%s :Nickname is already in use",
};

Reply Enotonchannel = {
	.nr = 442,
	.msg = "%s :You're not on that channel",
};

Reply Eneedmoreparams = {
	.nr = 461,
	.msg = "%s :Not enough parameters",
};

Reply Ealreadyregistered = {
	.nr = 462,
	.msg = ":Unauthorized command (already registered)",
};

Reply Erestricted = {
	.nr = 484,
	.msg = ":Your connection is restricted!",
};

Reply Sprivmsg = {
	.msg = "PRIVMSG %s :%s",
};

Reply Sjoin = {
	.msg = "JOIN %s",
};

Reply Spart = {
	.msg = "PART :%s",
};