udp packet fragmentation for raw sockets(原始套接字的 udp 数据包分段)
问题描述
问题跟进原始套接字的数据包碎片
如果我有一个这样实现的原始套接字:
If I have a raw socket implemented as such:
if ((sip_socket = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0)
{
cout << "Unable to create the SIP sockets."<< sip_socket<<"
";
return -3;
}
if ( setsockopt(sip_socket, IPPROTO_IP, IP_HDRINCL, &one, sizeof(one)) == -1)
{
cerr << "Unable to set option to Raw Socket.
";
return -4;
};
如果我的数据包大小为 1756(不包括 IP 标头),我该如何设置 ipHdr->fragment_offset(16 位,包括 3 位标志)?
我是否需要准备两个数据包——一个大小为 1480,另一个大小为 276,然后在两个数据包上打 IP 标头?
how can I set the ipHdr->fragment_offset (16 bits including 3 bit flags) if I have a packet of size 1756 (not including the IP header)?
Do I need to prepare two packets-one of size 1480 and another of size 276, and then slap IP headers on both packets?
谁能指出一个示例代码?
Can anyone point to an example code for this?
推荐答案
是的,你需要准备两个包,每个包都有自己的IP头.
Yes, you need to prepare two packets, each with their own IP header.
如果您在第一个数据包中放入 1480 个字节的数据,在第二个数据包中放入 276 个字节,那么 IP 标头应该是相同的,除了这些字段:
If you put 1480 bytes of data in the first packet and 276 in the second, then the IP headers should be identical, except for these fields:
Fragment Offset:第一个包设置为0,第二个包设置为1480;Total Length:设置为1480加上第一个包的头长度,276加上第二个包的头长度;MF标志:在第一个包中设置为1,在第二个包中设置为0;标头校验和:根据不同的标头重新计算.
Fragment Offset: set to0in the first packet, and1480in the second;Total Length: set to 1480 plus the header length in the first packet, and 276 plus the header length in the second packet;MFflag: set to1in the first packet and0in the second;Header Checksum: Recalculated over the different headers as appropriate.
这篇关于原始套接字的 udp 数据包分段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:原始套接字的 udp 数据包分段
基础教程推荐
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 我有静态或动态 boost 库吗? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
