发送数据包时的字节对齐
如果我发送一个包含地址、端口等内容的数据包,另一端会出现对齐问题吗? (使用socks 5协议)
If I send a packet containing address, port and other stuff, would there be any alignment problem on the other side? (using socks 5 protocol)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有提及您正在使用哪种语言进行编程。如果您使用的是 C 或 C++,则有诸如
htons
、htonl
、ntohs
之类的函数code>、ntohl
等将网络数据元素标准化为可传输格式。 本指南(以及其他许多指南)将告诉您如何编写网络可移植代码,因此字节顺序的差异不会在 @ss 中影响您。You don't mention which language you're programming in. If you're using C or C++, there are functions like
htons
,htonl
,ntohs
,ntohl
and more to standardize network data elements into a transportable format. This guide (among many others) will tell you how to write network portable code so differences in endianness will not bite you in the @ss.