Questions tagged [sctp]

Stream Control Transmission Protocol (SCTP) is a transport layer protocol providing reliable transport of data like TCP but with message oriented features like UDP.

It provides some of the same service features of both: it is message-oriented like UDP and ensures reliable, in-sequence transport of messages with congestion control like TCP.

http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol

230 questions
-1
votes
2 answers

How to handle EAGAIN case for TLS over SCTP streams using memory BIO interface

I'm using BIO memory interface to have TLS implemented over SCTP. So at the client side, while sending out application data, SSL_write() api encrypts the data and writes data to the associated write BIO interface. Then the data from BIO interface…
neo
  • 85
  • 1
  • 8
-1
votes
2 answers

tcp/ip without ip in .net

Strange title I know, but please hear me out. I am looking for a version of TcpClient and TcpListener which don't use IP. In essence, I would like to be able to use all the TCP benefits (reliable & ordered) on top of any protocol of my choosing…
Fidel
  • 7,027
  • 11
  • 57
  • 81
-1
votes
1 answer

SCTP What is the advantage over un ordered message delivery?

It is interesting to read about SCTP protocol. When i compared with TCP, one of the point which is really impressing is un ordered message deliver which is not the case with TCP which always sends the packet ordered. But still, what advantages shall…
DrunkenMaster
  • 1,218
  • 3
  • 14
  • 28
-1
votes
2 answers

how SCTP multistreaming is different from TCP Stream?

SCTP used multiple stream to transfer single file then TCP that i know but one question raised that if SCTP transfer single file in multiple stream that will increase the traffic on that server then TCP because TCP use Single Stream to transfer file…
-1
votes
1 answer

Running program in SCTP

I need to create a program that sends messages, using SCTP, from host A to host B. The problem is... I don't know how do run this program. How can I, using language C, send messages from one host to another. Any vague answer is welcomed.
1 2 3
15
16