Files
firestuff/markdown/2006-02-26-sctp-part-1.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

2019-04-21 17:26:31 +00:00
htmhtmll<!--# set var="title" value="SCTP Part #1" -->
<!--# set var="date" value="February 26, 2006" -->
<!--# include file="include/top.html" -->
Ive been doing some work with SCTP lately. Im working through some of the intricacies of the protocol and the brain damage of the APIs (there are two of them, and they both suck). As I write my own API, I thought Id post a few things here showing, from examples, the nifty stuff that the protocol does. Heres the first, dealing with message length preservation:
MSG_EOR = 128
IPV6/TCP:
send("ABCDEFGH", 8) = 8
send("01234567", 8) = 8
recv(16, MSG_DONTWAIT) = 16
recv(16, MSG_DONTWAIT) = -1
========
send("ABCDEFGH", 8) = 8
send("01234567", 8) = 8
recvmsg(5, MSG_DONTWAIT) = 5
-----> msg_flags = 0
recvmsg(11, MSG_DONTWAIT) = 11
-----> msg_flags = 0
recvmsg(11, MSG_DONTWAIT) = -1
-----> msg_flags = 0
IPV6/SCTP:
send("ABCDEFGH", 8) = 8
send("01234567", 8) = 8
recv(16, MSG_DONTWAIT) = 8
recv(16, MSG_DONTWAIT) = 8
========
send("ABCDEFGH", 8) = 8
send("01234567", 8) = 8
recvmsg(5, MSG_DONTWAIT) = 5
-----> msg_flags = 0
recvmsg(11, MSG_DONTWAIT) = 3
-----> msg_flags = 128
recvmsg(11, MSG_DONTWAIT) = 8
-----> msg_flags = 128
<!--# include file="include/bottom.html" -->