Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eio.Net: SCTP support #535

Open
adatario opened this issue May 30, 2023 · 1 comment
Open

Eio.Net: SCTP support #535

adatario opened this issue May 30, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@adatario
Copy link
Contributor

Stream Control Transmission Protocol (SCTP) is a transport protocol like TCP or UDP that offers message-oriented transport (like UDP) with reliability and congestion-control (like TCP). See also the Wikipedia site.

It's seems to be an interesting transport for applications that use message-oriented networking and want the reliability benefits of TCP without having to do message delimiting or paying the overhead of strict ordering. It would be nice for Eio as modern IO library to offer SCTP support.

SCTP is available on Linux and *BSD, but not yet on Mac OSX or Windows (natively).

@avsm
Copy link
Contributor

avsm commented May 30, 2023

It's always good to find a concrete usecase for protocols like this. Last I looked a few years ago, the only real consumer of SCTP is the WebRTC transport layer, and it tunnelled it over UDP in order to get through middleboxes reliably. I'm not sure there's anyone really using SCTP directly, but I'm most happy to be corrected.

@avsm avsm added the enhancement New feature or request label May 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants