我正在构建一个套接字,使用
CFStreamCreatePairWithSocketToHost(kCFAllocatorDefault,
(CFStringRef) yourHostAsNSString,
yourPortAsInteger,
&myReadStream,
&myWriteStream);
我看到当我使用“myWriteStream”发送消息时,它会将几条消息连接在一起然后发送它们。我认为这是因为 Nagle 算法而发生的,我想禁用它。有谁知道怎么做?