gpt4 book ai didi

C 套接字 : problem with connect() and/or accept() between clients. 111:连接被拒绝

转载 作者:太空宇宙 更新时间:2023-11-03 23:36:06 29 4
gpt4 key购买 nike

女士们先生们大家好,我在使用 accept() 时遇到了一些问题。我有多个客户端和一台服务器。客户端可以与服务器很好地连接和通信。但有一次,我需要一些客户端直接相互连接,但我在这方面遇到了一些困难。客户端有一堆线程在运行,其中一个是 handle_connection() 并且它有一个 while(1),永远循环到 listen()accept() 任何传入连接。每当客户端尝试 connect() 到其他客户端时,connect() 都会返回一个错误,111:连接被拒绝。我知道我有正确的 IP 地址和正确的端口(我已经为客户端间连接指定了一个端口)。等待连接的客户端没有注意到任何东西,没有新连接,nada。我复制了部分代码,希望有人能指出我做错了什么。感谢您的任何意见!

这都是客户端代码。void * handle_connections(void * arg) 是一个永远循环到 accept() 任何传入连接的线程。我的服务器发生了非常相似的事情,并且运行良好。 (不知道为什么它在这里不起作用..)这是客户端等待新传入连接的部分。int handle_request(void * arg, struct message * msg) 在程序的某一时刻被调用并尝试连接到 struct message * msg 中指定的客户端,其中包括struct sockaddr_in 带有 IP 地址和端口号等等。

#define SERVER_PORT 10000
#define CLIENT_PORT 3456
#define MAX_CONNECTION 20
#define MAX_MSG 50

void * handle_connections(void * arg)
{
struct fd_info * info;
struct sockaddr_in client_address;
struct timeval timeout;
fd_set readset, copyset;

bzero((char * ) &client_address, sizeof(client_address)); // copy zeroes into string
client_address.sin_family = AF_INET;
client_address.sin_addr.s_addr = htonl(INADDR_ANY);
client_address.sin_port = htons(CLIENT_PORT);

sockfd = socket(AF_INET, SOCK_STREAM, 0);
rv = listen(sockfd,MAX_CONNECTION);


while(1)
{
new_sockfd = accept(sockfd, (struct sockaddr *) &client_address, &client_addr_len); //blocks

if (new_sockfd < 0) {
printf("C: ERROR accept() %i: %s \n", errno, strerror(errno));
sleep(2);
} else {
printf("C: accepted\n");
FD_SET(new_sockfd, &readset); // sets bit for new_sockfd to list of sockets to watch out for
if (maxfd < new_sockfd)
maxfd = new_sockfd;
if (minfd > new_sockfd)
minfd = new_sockfd;
} //end if else (new_sockfd)

} // end of the forever while loop
}

int handle_request(void * arg, struct message * msg)
{
char * cname, gname, payload;
char * command[3];

int i, rv, sockfd, client_addr_len;

struct sockaddr_in client_address;
struct fd_info * info;

info = (struct fd_info *) arg;
sockfd = info->sock_fd;


sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd == -1)
{
printf("HR: ERROR socket() %i: %s \n", errno, strerror(errno));
break;
}
else if (sockfd > 0)
{
printf("HR: new socks is %i \n", sockfd);
printf("HR: sin_family is %i: %i\n", msg->peer.client_address.sin_family, msg->peer.client_address.sin_port);
//*************************************************************
//this is the part that returns error 111: Connection refused!!!
//*************************************************************
rv = connect(sockfd, (struct sockaddr *) &msg->peer.client_address, sizeof(struct sockaddr));
if (rv == -1)
{
printf("HR: ERROR: connect() %i: %s \n", errno, strerror(errno));
printf("HR: at %li \n", msg->peer.client_address.sin_addr.s_addr);
break;
}
else if (rv > 0)
{
info->max_fd = sockfd;
printf("HR: connected successfully!! \n");
}
}
}

最佳答案

您的问题是您没有在 listen() 之前调用 bind(),因此您正在监听随机选择的端口上的连接,而不是您选择的端口想继续听。

你需要:

if (bind(sockfd, &client_address, sizeof client_address)))
{
perror("bind");
/* Handle this error somehow */
}

listen() 之前。

请注意,传递给 accept()sockaddr 结构不是要监听的地址 - 它是 accept() 的输出参数> 用于存储当 accept() 返回时已连接的客户端地址。

关于C 套接字 : problem with connect() and/or accept() between clients. 111:连接被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2960539/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com