gpt4 book ai didi

c - struct ip 和 struct iphdr 的区别

转载 作者:太空狗 更新时间:2023-10-29 17:19:00 24 4
gpt4 key购买 nike

我正在尝试了解网络是如何工作的,我正在做一些测试,发送一些包裹......无论如何

我的观点是,我找不到“protocol”结构“protocol header”结构之间的真正区别。

对于 ip 结构,它们的大小都是 20 字节。但例如:

  • struct ipstruct iphdr 大小为 20 字节
  • struct icmp 大小为 28 字节
  • struct icmphdr 大小为 8 字节

我猜 struct icmp 包含一个 struct ip/iphdr? ?

而且我见过的每个协议(protocol)都有相同类型的结构。结构 udp/结构 udphdr,

它是否链接到使用 setsockopt() 设置的 IP_HDRINCL

所以我的问题是它们之间的真正区别是什么?以及何时使用好的。

ip 和 iphdr 结构:

struct iphdr {
#if defined(__LITTLE_ENDIAN_BITFIELD)
__u8 ihl:4,
version:4;
#elif defined (__BIG_ENDIAN_BITFIELD)
__u8 version:4,
ihl:4;
#else
#error "Please fix <asm/byteorder.h>"
#endif
__u8 tos;
__u16 tot_len;
__u16 id;
__u16 frag_off;
__u8 ttl;
__u8 protocol;
__u16 check;
__u32 saddr;
__u32 daddr;
/*The options start here. */
};

IP HDR

struct ip {
#if BYTE_ORDER == LITTLE_ENDIAN
u_char ip_hl:4, /* header length */
ip_v:4; /* version */
#endif
#if BYTE_ORDER == BIG_ENDIAN
u_char ip_v:4, /* version */
ip_hl:4; /* header length */
#endif
u_char ip_tos; /* type of service */
short ip_len; /* total length */
u_short ip_id; /* identification */
short ip_off; /* fragment offset field */
#define IP_DF 0x4000 /* dont fragment flag */
#define IP_MF 0x2000 /* more fragments flag */
u_char ip_ttl; /* time to live */
u_char ip_p; /* protocol */
u_short ip_sum; /* checksum */
struct in_addr ip_src,ip_dst; /* source and dest address */
};

此处的 ICMP 结构代码:https://www.cymru.com/Documents/ip_icmp.h

最佳答案

struct ipstruct iphdr是同一底层结构的两种不同定义,来自不同的地方。

struct ip<netinet/ip.h> 中定义,这是 UNIX 系统上相当标准的 header 。

struct iphdr<linux/ip.h> 中定义.此 header (和结构)是特定于 Linux 的,不会出现在其他操作系统中。

如果您不确定使用哪一个,请使用 struct ip ;使用这种结构的代码更有可能移植到非 Linux 系统。


struct icmpstruct icmphdr是一个更困惑的情况:

  • <netinet/icmp.h>定义两者 struct icmpstruct icmphdr .
  • <linux/icmp.h>还定义了 struct icmphdr , 与 <netinet/icmp.h> 中的定义具有相似的结构(但与往常一样,字段名称不同) .

首先:不要包含<linux/icmp.h>除非你有很好的理由。您不能包含两个 header ——它们会发生冲突——而且大多数软件都需要 netinet 定义。

第二个:struct icmphdr顾名思义,就是标题。 struct icmp定义结构化 ICMP 消息的内容,例如目标无法到达的消息。

关于c - struct ip 和 struct iphdr 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42840636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com