为什么我的IRC机器人没有连接?

时间:2010-02-27 18:34:06

标签: c# .net irc bots

public static string SERVER = "irc.rizon.net";
private static int PORT = 6667;
private static string USER = "Test C# Irc bot";
private static string NICK = "Testing";
private static string CHANNEL = "#Test0x40"; 

public static void Main(string[] args)
{
    NetworkStream stream;
    TcpClient irc;
    StreamReader reader;
    StreamWriter writer;

    irc = new TcpClient(SERVER, PORT);
    stream = irc.GetStream();
    reader = new StreamReader(stream);
    writer = new StreamWriter(stream);

    writer.WriteLine("NICK " + NICK);
    writer.Flush();
    writer.WriteLine("JOIN " + CHANNEL);
    writer.Flush(); 

    Console.ReadKey(true);
}

为什么我的IRC机器人没有连接?

1 个答案:

答案 0 :(得分:3)

IRC协议需要CR / LF对,而StreamWriter的默认行为只是换行。您应该像这样创建StreamWriter:

writer = new StreamWriter(stream) { NewLine = "\r\n", AutoFlush = true };

此外,您可能应该在加入频道之前使用USER命令指定用户名,但我不确定是否完全有必要:

writer.WriteLine("USER username +mode * :Real Name");