reactos/irc/TechBot/TechBot.IRCLibrary/IRC.cs
Pierre Schweitzer c17bb07ec3 - Changed ghost command (using NickServ)
- Ghost before registering

svn path=/trunk/; revision=35091
2008-08-03 21:34:12 +00:00

29 lines
654 B
C#

using System;
namespace TechBot.IRCLibrary
{
/// <summary>
/// IRC constants and helper methods.
/// </summary>
public class IRC
{
#region IRC commands
public const string JOIN = "JOIN";
public const string NICK = "NICK";
public const string PART = "PART";
public const string PING = "PING";
public const string PONG = "PONG";
public const string PRIVMSG = "PRIVMSG";
public const string USER = "USER";
public const string PASS = "PASS";
public const string GHOST = "MSG NICKSERV GHOST";
public const string RPL_NAMREPLY = "353";
public const string RPL_ENDOFNAMES = "366";
#endregion
}
}