Design
sctp.txt
Associated article: Stream-Control Transmission Protocol
Tags: Mobile Design
Published source code accompanying the article by Ian Barile in which he examines the Stream Control Transmission Protocol--a new transport layer protocol that offers an alternative to TCP. Also see SCTP.ZIP.
Stream-Control Transmission Protocol by Ian Barile Example 1: int SCTPSock = socket(PF_INET, SOCK_SEQPACKET, IPPROTO_SCTP); //set sctp initial options sctp_initmsg tSCTPInitMsg; memset(&tSCTPInitMsg, 0, sizeof(tSCTPInitMsg)); tSCTPInitMsg.sinit_num_ostreams = 10; tSCTPInitMsg.sinit_max_instreams = 20; int nRet = setsockopt(SCTPSock, ...


