VMS: use csrsrv!CsrAddStaticServerThread to hook the listening port.
[reactos.git] / irc / TechBot / TechBot.IRCLibrary / IRC.cs
1 using System;
2
3 namespace TechBot.IRCLibrary
4 {
5 /// <summary>
6 /// IRC constants and helper methods.
7 /// </summary>
8 public class IRC
9 {
10 #region IRC commands
11
12 public const string JOIN = "JOIN";
13 public const string NICK = "NICK";
14 public const string PART = "PART";
15 public const string PING = "PING";
16 public const string PONG = "PONG";
17 public const string PRIVMSG = "PRIVMSG";
18 public const string USER = "USER";
19
20 public const string RPL_NAMREPLY = "353";
21 public const string RPL_ENDOFNAMES = "366";
22
23 #endregion
24
25 }
26 }