无法连接到 Twitch IRC 服务器,IP 地址问题,C 语言

Can't Connect to Twitch IRC Server, problem with IP address, C language

我正在尝试完全用 C 语言为 Twitch 构建 ChatBot。但是我在连接到服务器时遇到问题:irc.chat.twitch.tv 端口 6667。我正在调用 gethostbyname() 来检索主机名的 IP 地址,但是连接函数从未建立连接,并且 returns "Connection Failed"。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>

#include "Authentication.h"
#include "MessageHandlers.h"


int main()
{
    int sock;
    struct sockaddr_in addr;
    struct hostent * addr_info;
    char * ip;
    addr_info = gethostbyname("irc.chat.twitch.tv");

    ip = inet_ntoa(*(struct in_addr *)addr_info->h_name);
    printf("%s", ip);
    addr.sin_family = AF_INET;
    addr.sin_port = htons(6667);
    addr.sin_addr.s_addr = inet_addr(ip);

    sock = socket(AF_INET, SOCK_STREAM, 0);
    if(sock < 0)
    {
        fprintf(stderr, "\nSocket Creation Failed\n");
        exit(EXIT_FAILURE);
    }
    printf("\nConnecting to Twitch IRC Server...\n");
    if(connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == -1)
    {
        fprintf(stderr, "\nConnection Failed\n");
        exit(EXIT_FAILURE);
    }

   // SendAuthentication(sock);
/*
    while(1)
    {
     OnMessageEvents(sock);
    }
  */  

   exit(EXIT_SUCCESS);
}

我做错了什么吗? twitch 解析的 ip 地址似乎是 105.114.99.45。我在 Google 上搜索了实际的 IP 地址,但没有找到任何答案。

我使用 nslookup irc.chat.twitch.tv 并尝试了所有的 IP 地址,但我仍然得到 "Connection Failed"。

如果我使用 telnet irc.chat.twitch.tv 6667,我会获得一个连接并且我可以执行登录。

已在上面的评论中解决。 struct sockaddr_in 中的端口号是网络字节序(又名大字节序),而您的计算机可能 运行 是小字节序。要分配它,您必须使用

addr.sin_port = htons(6667);

而不是

addr.sin_port = 6667;