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.
在 C 语言中,我必须使用 tcp/ip (~6.5mo) 发送一堆数据,我使用的是“经典”send()。您认为将要发送的整个数据大小的一部分提供给函数是一个好主意,还是我应该更喜欢块方式(例如,64ko 的切片......)
给它完整的大小,然后用缓冲区的其余部分再次调用它(根据返回值)。
你处理你的逻辑,让操作系统处理发送逻辑。