我试图用C语言构建一个Twitch聊天机器人。但我在连接到服务器时遇到问题:irc.chat.twitch.tv
端口6667
。我调用gethostbyname()
来检索主机名的ip地址,但是connect函数从未建立连接,并返回“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
。我在谷歌上搜索实际的ip地址,但没有找到任何答案。我使用了
nslookup irc.chat.twitch.tv
并尝试了所有的ip地址,但仍然得到“连接失败”。如果我使用
telnet irc.chat.twitch.tv 6667
连接,我就可以执行登录。 最佳答案
在上述评论中解决。struct sockaddr_in
中的端口号是network endianness(也称为big endian),而您的计算机可能运行的是little endian。要分配它,必须使用
addr.sin_port = htons(6667);
而不是
addr.sin_port = 6667;
关于c - 无法连接到Twitch IRC服务器,IP地址,C语言问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54538980/