“'sockaddr_in'未声明(在此函数中首次使用)”错误,尽管包含必需的标题

时间:2013-05-17 10:04:03

标签: c sockets header-files

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/time.h>
#include <stdlib.h>
#include <memory.h>
#include <ifaddrs.h>#include <net/if.h>
#include <stdarg.h>

#define BACKLOG 10

void * get_in_addr(struct sockaddr *sa){
    if(sa->sa_family == AF_INET){
            return &((sockaddr_in *)sa)->sin_addr;
    }
    else if(sa->sa_family == AF_INET6){
            return &((sockaddr_in6 *)sa)->sin6_addr;
    }
}

我在我的代码中使用sockaddr_in结构来判断传入连接是IPv4还是IPV6地址。尽管在我的代码中包含netinet / in.h头文件,但我收到错误“'sockaddr_in'未声明(在此函数中首次使用)”。有没有我在这里看不到的东西?

1 个答案:

答案 0 :(得分:9)

sockaddr_in不是typedef,因此请尝试将其与struct一起使用,如下所示

(struct sockaddr_in *)