在 RPC 中,接收方如何识别发送方架构?

发布于 2024-11-25 05:02:04 字数 97 浏览 1 评论 0原文

我试图了解发送者如何识别发送者的字节序。我知道初始字节通常是发送者的体系结构/类型。例如 0x00 是 i386 等。但是,如果接收者不知道如何解释第一个字节,那么它有什么帮助呢?

I am trying to wrap my head around how the sender identifies the endianness of the sender. I know the initial byte is usually the architecture/type of the sender. For example 0x00 is i386 etc. However, how does the first byte help at all if the receiver has no idea how to interpret it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弱骨蛰伏 2024-12-02 05:02:04

字节顺序是指将字节排序为较大的数字,而不是字节内的位顺序。单个字节始终是字节序安全的;网络透明地传输字节流(即,字节的接收顺序与发送顺序相同)。

Endianness refers to the ordering of bytes into larger numbers, not the order of bits inside a byte. A single byte is always endian-safe; networks transfer byte streams transparently (that is, bytes are received in the same order in which they were sent).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文