Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 boost asio tcp 读取函数或 udp 接收函数通过套接字读取数据到
std::vector<char>,
数据是按网络字节顺序还是接收主机字节顺序填充向量?
您将按照发送的顺序接收字节。
“字节顺序”仅在处理多字节数值时才有意义 - 当消息被视为字节流或字节包时,就像在 TCP/UDP 传输层一样,没有这样的东西。
如果某些字节需要被解释为多字节值,那么您需要知道它们是如何被应用层编码的。TCP 和 UDP 套接字都不能帮助您。