我编写了这个小服务器并且它不起作用。直接在开头的消息也没有打印出来,我也不知道如何使用gdb来分析问题。你可以帮帮我吗?有没有图书馆丢失或有什么错误?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#define PORT 7890
int main(void) {
printf("HelloWorld");
int sockfd, sock_client;
if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
printf("Could no open socket\n");
}
int yes = 1;
if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof (int)) == -1) {
printf("Coud not reuse\n");
}
printf("socket was created");
struct sockaddr_in sockaddr_host, sockaddr_client;
sockaddr_host.sin_family = AF_INET;
sockaddr_host.sin_port = htons(PORT);
sockaddr_host.sin_addr.s_addr = 0;
memset(&(sockaddr_host.sin_zero), '\0', 8);
if (bind(sockfd, (struct sockaddr *) &sockaddr_host, sizeof (sockaddr_host)) == -1) {
printf("Could not bind socket");
}
if (listen(sockfd, 1) == -1) {
printf("Could not start listening");
} else {
printf("Server is listening on %s: %d", inet_ntoa(sockaddr_host.sin_addr), ntohs(sockaddr_host.sin_port));
}
while (1) {
socklen_t client_length = sizeof (sockaddr_client);
if ((sock_client = accept(sockfd, (struct sockaddr *) &sockaddr_client, &client_length)) == -1) {
printf("Could not accept connection");
}
printf("sever: got connection from %s on port %d", inet_ntoa(sockaddr_client.sin_addr), ntohs(sockaddr_client.sin_port));
char message[] = "Hello\n";
if (send(sockfd, message, sizeof (message), 0) == -1) {
printf("Could not send message");
}
close(sock_client);
close(sockfd);
}
return 0;
}
答案 0 :(得分:1)
如果您错过了一个库,链接器就会抱怨。
标准输出通常是行缓冲的。在HelloWorld
之后添加换行符,您将看到至少第一个输出。
printf("HelloWorld\n");
与其他printf
相同。
将\n
添加到每个printf
后,您会看到
的HelloWorld
socket已创建
服务器正在监听0.0.0.0:7890
现在连接到服务器时,例如netcat
nc localhost 7890
您的服务器将输出
服务器:从端口36496上的127.0.0.1获得连接
但仍存在一些错误。
if(send(sockfd, message, sizeof(message), 0) == -1) {
应该是
if(send(sock_client, message, sizeof(message) - 1, 0) == -1) {
否则服务器将消息发送给自己。 sizeof(message)
也包含最终的\0
。
最后,如果您想继续接收第一个以外的其他连接请求,则不应该close(sockfd);
。
答案 1 :(得分:0)
正如你所说
直接在开头的信息也没有打印出来
printf
添加fflush
后
printf("HelloWorld");
fflush(stdout);
是否缺少任何库
我不认为任何库都会丢失,因为您已成功编译程序并创建了可执行文件。