我正在尝试完全使用C语言为Twitch构建一个ChatBot。但是我在使用端口irc.chat.twitch.tv
连接到服务器6667
时遇到问题。我正在调用gethostbyname()
来检索主机名的IP地址,但是connect函数从不建立连接,并返回“连接失败”。
#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);
}
我在做错什么吗?经过颤动解析的IP地址似乎是105.114.99.45
。我在Google上搜索了实际的IP地址,但没有找到任何答案。
我使用nslookup irc.chat.twitch.tv
并尝试了所有ip地址,但仍然出现“连接失败”的情况。
如果我使用telnet irc.chat.twitch.tv 6667
,则可以建立连接,并且可以执行登录。
答案 0 :(得分:2)
已在上面的评论中解决。 struct sockaddr_in
中的端口号以网络字节序(又名大字节序)表示,而您的计算机可能以小字节序运行。要分配它,您必须使用
addr.sin_port = htons(6667);
代替
addr.sin_port = 6667;