mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:25:56 +00:00
Import TechBot
svn path=/trunk/; revision=13064
This commit is contained in:
parent
568b27baeb
commit
9dab4509fa
94 changed files with 24386 additions and 0 deletions
26
irc/TechBot/TechBot.IRCLibrary/IRC.cs
Normal file
26
irc/TechBot/TechBot.IRCLibrary/IRC.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
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 RPL_NAMREPLY = "353";
|
||||
public const string RPL_ENDOFNAMES = "366";
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue