11

我有一段很久以前在某个环境中工作的代码。我很确定这是一台 FreeBSD 机器,所以我得到了 FreeBSD 8.3,我正在尝试制作这个文件,但它不起作用。

当我尝试编译它时,它会抱怨:

f.c: In function 'tcp'>
f.c:24: error: storage size of 'socket_stru' isn't known
f.c:29: error: 'IPPROTO_TCP' undeclared (first use in this function)
...

我一直在环顾四周,发现这些都在 sys/socket.h 文件中指定。这是我的实际文件:

#include <stdio.h>
#include <string.h>
#include <netdb.h>
#include <sys/socket.h>
#include <unistd.h>


#include "f.h"

int tcp4 (in_addr_t ip, int port, int qsize )
{   
    struct sockaddr_in socket_stru; // line 24
    socket_stru.sin_family = AF_INET;
    socket_stru.sin_port = htons(port);
    socket_stru.sin_addr.s_addr = ip;

    int actual_socket = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); // line 29
...

我觉得我的代码不知何故没有“读取” sys/socket.h 文件,所以它不知道 socket_stru 和 IPPROTO_TCP,但我真的迷路了。

有任何想法吗?

4

5 回答 5

10

其他答案都不适合我。在查看sys/socket.h文件内部后,我什至没有看到struct sockaddr_in.

对我有用的是使用相应类型#include时的以下文件之一:struct sockaddr_*

  • 如果你正在使用struct sockaddr_in#include <netinet/in.h>
  • 如果你正在使用struct sockaddr_un#include <sys/un.h>
  • 如果你正在使用struct sockaddr_ns#include <netns/ns.h>
  • 如果你正在使用struct sockaddr_ndd#include <sys/ndd_var.h>

更多关于套接字编程头文件的信息可以在这里找到。

于 2016-02-19T20:58:09.150 回答
8

我将您的代码剪切并粘贴到一个文件中(仅删除 #include fh 并关闭函数调用。)它在Linux上编译得很好。

我怀疑BSD上可能存在头文件差异。对于套接字编程,我通常包括所有这些头文件。而且我知道我的套接字代码也可以在 BSD 上编译。我怀疑其中一个头文件引入了 sockaddr_in 的定义。我记得当我通过套接字代码移植到 BSD 时,我必须明确添加其中的一些。

#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>
/* the next two includes probably aren't relevant for you, but I typically use them all anyway */
#include <math.h>
#include <sys/termios.h>

希望这可以帮助

于 2013-04-22T19:04:02.633 回答
4

我有同样的问题,但以下内容为我解决了这个问题

#include <arpa/inet.h>
于 2015-03-17T23:38:21.313 回答
4

只需添加#include <resolv.h>到您的来源,您就可以开始了。

于 2016-03-10T18:46:16.040 回答
2

根据你需要的freebsd开发者手册

#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
于 2016-02-19T21:08:49.453 回答