gpt4 book ai didi

c - SCTP 有序消息传递

转载 作者:行者123 更新时间:2023-12-04 09:40:18 25 4
gpt4 key购买 nike

是否可以强制 SCTP 发送完全有序的所有数据?

让我们做这个实验:

1) 拿这个 SCTP-discard-server而这个 SCTP-client .

2)让客户端多次计数到100,每次分别向服务器发送一个字节。

for(long i=0; i< 1000000000; i++){
char temp = (char)(i%100) + 1;
usrsctp_sendv(
sock, (void *)&temp, 1,
NULL, 0, NULL, 0, SCTP_SENDV_NOINFO, 0
);
}

3)让服务器沿同样的方式计数,并将其数量与接收到的数量进行比较。
printf("%d %d\n", (int)buffer[0], (int)(test));
if ((int)test != (int)buffer[0]) break;

几秒钟后:
66 66
67 67
68 68
69 69
51 70

瞧!

我用 $ gcc discard_server.c -Wall -lusrsctp 编译了这个在我的 Ubuntu 18.04 机器上使用 gcc7.3.0。是的,我已经尝试通过 SCTP_NODELAY 禁用各种 nagel 算法。 .

我错过了什么?提前感谢您的任何提示。

最佳答案

您可能遗漏的是 SCTP 不保证关联内的顺序传递。只有在流中才能保证顺序交付。
RFC 4960 chapter 1.5.2说:

Internally, SCTP assigns a Stream Sequence Number to eachmessage passed to it by the SCTP user. On the receiving side, SCTPensures that messages are delivered to the SCTP user in sequencewithin a given stream. However, while one stream may be blockedwaiting for the next in-sequence user message, delivery from otherstreams may proceed.


我猜您配置了不止一个流,并且您使用的实现在流之间分配负载。这应该很容易通过wireshark跟踪确认。
如果您携带消息顺序,您应该在发送数据时指定流 ID,并在数据到达时检查流 ID。

关于c - SCTP 有序消息传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54065852/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com