c - C 中的 UDP 服务器/客户端 - 发送到错误 : Address family not supported by protocol

标签 c sockets unix udp sendto

我正在编写一个简单的说明性 UDP 服务器客户端。服务器应根据客户端输入计算客户端的网络字节顺序,并将其发送回客户端。我一整天都在尝试修复此错误。任何帮助将不胜感激。这是服务器启动和输出:

./udpserver.out 4545
from.sin_family: 12079
Little Endian

ERROR UDP_SRV_004 - can not send message to client: Address family not supported by protocol

客户端启动:

./udpclient.out localhost 4545

服务器代码:

#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <netinet/in.h>
#define BUFFER_SIZE 80

static void error(char *msg){
    perror(msg);
    exit(1);
}


int main(int argc, char ** argv){

    int socketfd, portno, fromlen, n, length;
    struct sockaddr_in server, from;
    char buffer[BUFFER_SIZE];
    char response[BUFFER_SIZE];
    const char *le = "Little Endian\n";
    const char *be = "Big Endian\n";
    const char *unk = "Unknown \n";
    int cli_family;

    if(argc!=2){
        fprintf(stderr,"Error starting the client, please start server as: %s port\n", argv[0]);
        exit(0);
    }

    if((socketfd=socket(AF_INET,SOCK_DGRAM,0))<0)
        error("ERROR UDP_SRV_001 - can not create socket");

    portno=atoi(argv[1]);

    bzero(&server,sizeof(server));
    server.sin_family=AF_INET;
    server.sin_addr.s_addr=INADDR_ANY;
    server.sin_port=htons(portno);

    if(bind(socketfd,(struct sockaddr *)&server,sizeof(server))<0)
        error("ERROR UDP_SRV_002 - can not bind server address to a socket file descriptor");

    bzero(buffer, BUFFER_SIZE);
    bzero(response,BUFFER_SIZE);
    n=recvfrom(socketfd,buffer,BUFFER_SIZE-1,0,(struct sockaddr *)&from,&fromlen);
    if (n<0)
        error("ERROR UDP_SRV_003 - can not receive client's message");

    cli_family=from.sin_family;
    printf("from.sin_family: %d\n", cli_family); 

    if (buffer[0] == 1 && buffer[1] == 2)
        strcpy(response, be);
    else if (buffer[0] == 2 && buffer[1] == 1)
        strcpy(response, le);
    else
        strcpy(response, unk);

    length=strlen(response);
    printf("%s\n",response);

    n=sendto(socketfd,response,length,0,(struct sockaddr *)&from,fromlen);
    if(n<0)
        error("ERROR UDP_SRV_004 - can not send message to client");


    return 0;
}

客户端代码:

#include <stdio.h>
#include <sys/types.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <unistd.h>
#define BUFFER_SIZE 80

static void error(char *msg){
    perror(msg);
    exit(1);
}

typedef union UNIT{
        short s;
        char c[sizeof(short)];
    }unit;

int main(int argc, char ** argv){

    int socketfd, portno, n, length;
    struct sockaddr_in  server, from;
    struct hostent *host;
    char buffer[BUFFER_SIZE];
    unit un;
    un.s=0x0102;

    if(argc!=3){
        fprintf(stderr,"Error starting the client, please start client as: %s hostname port\n", argv[0]);
        exit(0);
    }

    if((host=gethostbyname(argv[1]))==NULL)
        error("ERROR UDP_CLI_001 - no such host defined, please check your /etc/hosts file");

    portno=atoi(argv[2]);

    if((socketfd=socket(AF_INET,SOCK_DGRAM,0))<0)
        error("ERROR UDP_CLI_002 - can not create socket");

    bzero((char *)&server,sizeof(server));

    server.sin_family=AF_INET;
    server.sin_port=htons(portno);
    bcopy((char *)host->h_addr,(char *)&server.sin_addr,host->h_length);
    length=sizeof(server);

    if(sizeof(short)!=2){
      exit(0);
    }

    n=sendto(socketfd,un.c,strlen(un.c),0,(struct sockaddr *)&server,length);
    if(n<0)
        error("ERROR UDP_CLI_003 - can not send to server");
    bzero(buffer,BUFFER_SIZE);
    n=recvfrom(socketfd,buffer,BUFFER_SIZE,0,(struct sockaddr *)&from, &length);
    if(n<0)
        error("ERROR UDP_CLI_004 - can receive from server");
    printf("%s",buffer);


return 0;
}

最佳答案

在服务器中,您未能在调用 sendto 之前初始化 fromlen。因此,未填充 from

来自man page :

If src_addr is not NULL, and the underlying protocol provides the source address, this source address is filled in. When src_addr is NULL, nothing is filled in; in this case, addrlen is not used, and should also be NULL. The argument addrlen is a value-result argument, which the caller should initialize before the call to the size of the buffer associated with src_addr, and modified on return to indicate the actual size of the source address. The returned address is truncated if the buffer provided is too small; in this case, addrlen will return a value greater than was supplied to the call.

recvfrom 函数尝试读取 fromlen 的值,但由于它未初始化,您调用了 undefined behavior .

初始化 fromlen 即可解决问题。

fromlen = sizeof from;
n=recvfrom(socketfd,buffer,BUFFER_SIZE-1,0,(struct sockaddr *)&from,&fromlen);

关于c - C 中的 UDP 服务器/客户端 - 发送到错误 : Address family not supported by protocol,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40615309/

相关文章:

linux - 从 root 帐户执行 cron 作业是否安全?

android - 尝试使用 Calimero Java 库通过 WiFi 连接时出现 "android.os.NetworkOnMainThreadException"

linux - 将文件行排列成表格形式

c++ - 如何将指向 "DEFINED"常量的指针传递给 C 中的函数?

检查该值是否为十进制数(不是数字字符)

java - Android 套接字抛出 UnknownHostException 错误

c# - 无法连续发送三个或更多数据包

shell - 将 awk 的输出分配给变量

c - valgrind 报告 "Invalid write of size 8"

c - 如何将环境变量从 child 传递给 parent ?