我正在学习套接字,我正在学习教科书中的一些示例代码。我有两台电脑,一台作为服务器,其他服务器作为客户端。我尝试通过套接字进行两台PC通信,但客户端connect()调用挂起。因为我刚开始学习所以我不知道发生了什么。
我试图搜索c connect()挂起但没有运气。我通过ifcongif inet 138.51.83.123
了解我的服务器IP
服务器:
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <limits.h>
#include <sys/wait.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <ctype.h>
#include <sys/types.h>
#include <signal.h>
#define SIZE sizeof(struct sockaddr_in)
void catcher(int sig);
int newsockfd;
int main(){
int sockfd;
char c;
struct sockaddr_in server = {AF_INET, 7000, INADDR_ANY};
static struct sigaction act;
act.sa_handler = catcher;
sigfillset(&(act.sa_mask));
sigaction(SIGPIPE, &act, NULL);
if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1){
perror("socket call failed");
exit(1);
}
if(bind(sockfd, (struct sockaddr*)&server, SIZE) == -1){
perror("bind call failed");
exit(1);
}
if(listen(sockfd, 5) == -1){
perror("listen call failed");
exit(1);
}
for(;;){
if((newsockfd = accept(sockfd, NULL, NULL)) == -1){
perror("accept call failed");
continue;
}
if(fork() == 0){
// keep reading if not EOF
while(recv(newsockfd, &c, 1, 0) > 0){
printf("***received: %c\n", c);
c = toupper(c);
send(newsockfd, &c, 1, 0);
}
close(newsockfd);
exit(0);
}
// parent no need for newsockfd
close(newsockfd);
}
return 0;
}
void catcher(int sig){
close(newsockfd);
exit(0);
}
客户:
#include <ctype.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h> // for open
#include <unistd.h> // for close
#define SIZE sizeof(struct sockaddr_in)
int main(){
int sockfd;
char c, rc;
struct sockaddr_in server = {AF_INET, 7000};
server.sin_addr.s_addr = inet_addr("138.51.83.71");
if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1){
perror("socket call failed");
exit(1);
}
if(connect(sockfd, (struct sockaddr*)&server, SIZE) == -1){
printf("here\n");
perror("connect call failed");
exit(1);
}
printf("here\n"); // never got printed out
for(;;){
printf("Input a lowercase char\n");
c = getchar();
send(sockfd, &c, 1, 0);
if(recv(sockfd, &rc, 1, 0) > 0) printf("receive: %c", rc);
else{
printf("server died\n");
close(sockfd);
exit(1);
}
}
}
在客户端,printf("here\n"); // never got printed out
所以这就是为什么我猜客户端connect()
挂起(我试图把这个printf放在connect()
之前,它打印出来)。有人可以帮忙吗?因为我没有网络编程的先验知识,所以我不知道如何调试。
首先尝试从客户端计算机ping服务器的IP地址并查看结果。如果ping不成功,则表示网络连接存在问题。我用服务器的IP运行你的程序为127.0.0.1(localhost),它运行得很好,这表明你的代码没有任何问题。
看来您的客户端无法看到您的服务器(使用ping您将能够检测到这种情况)。如果您是Linux用户,调试此类程序的简单方法是使用netcat。 Netcat是一种工具,可以让您在其他事物之间通过UDP或TCP创建客户端或服务器。如果你在不同的机器上有你的代码片段,我会改变(仅用于调试目的)IP到localhost,我会启动:
在服务器机器中:
netcat localhost 7000
hello world
它是一个TCP服务器,你知道它正常工作,所以你将能够检测到你的服务器是否有任何错误。
在客户端机器中
netcat -l localhost 7000
与服务器计算机类似,此命令创建一个侦听localhost:7000的TCP服务器。
它可能无法解决您的问题,因为它似乎是一个配置问题,如果我们不知道您正在使用哪种机器和配置设置,很难给您一些建议。但我认为netcat是一个强大的工具。