2

适用的代码如下,确切的错误也是如此。

sd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
if ( setsockopt( sd, IPPROTO_IP, IP_HDRINCL, &on, sizeof(on) ) < 0 )
{
    printf("%s\n", strerror(errno));
}
if ( setsockopt( sd, IPPROTO_IP, IP_DF, &on, sizeof(on) ) < 0 )
{
    printf("%s\n", strerror(errno));
    printf("DF\n");
}

错误:

root@PC:~# gcc main.c
main.c: In function ‘main’:
main.c:71: warning: format not a string literal and no format arguments
root@PC:~# ./a.out localhost
Protocol not available
DF

奇怪的是,第二个 setsockopt 出错了,而第一个却没有。

4

2 回答 2

3

IP_DF是一个数据包标志,而不是一个套接字选项。有效的套接字选项在ip(7)手册页中给出。

于 2012-04-04T04:39:34.610 回答
0

来自 ip(7) 手册页;

   IP_NODEFRAG (since Linux 2.6.36)
          If enabled (argument is nonzero), the reassembly of outgoing packets is
          disabled in the netfilter layer.  This option is only valid for
          SOCK_RAW sockets.  The argument is an integer.
于 2012-04-04T08:30:58.730 回答