SCTP: any cross-platform library?
Asked Answered
N

3

12

I'm investigating SCTP protocol. Its features look attractive. What I worry is its support from community. Is there any good cross-platform (at least Linux and Windows) C++ (or at least C) SCTP library? Does it support async methods?

Nitre answered 8/7, 2011 at 13:30 Comment(3)
I am not sure if you are willing to pay for this library but CCPU/Radisys has a platform independent library for SCTP. Their libraries works on win,linux,solaris and vx works. You can check it out at (ccpu.com/trillium-protocol-software-products/all-protocols-list/…)Yasui
I haven't found their prices, do you know how much it costs?Nitre
No. I guess you will have to send a mail at [email protected].Yasui
E
4

Not sure how well tested/working this is (never got to use it myself), but I looked at http://code.halssoftware.com/index.php/p/boostasiosctp/source/tree/master/boost a while ago. Let me know if that does anything for you.

Epifaniaepifano answered 8/7, 2011 at 13:48 Comment(3)
+1: great, I didn't expect to find Boost.Asio adapter, will have a look at itNitre
found this discussion. seems SCTP adapter for Boost.Asio is not ready and nobody knows when it will beNitre
Ah: it looked incomplete, but hadn't dug deeper. Well, you may want to try sctp.de/sctp-download.html instead then. It claims *nix/*BSD/Windows support, but that one really is a wild guess on my part as to whether it will do what you want.Epifaniaepifano
V
3

Update: A cross platform userland stack link

Exists and is actively maintained at Münster University of Applied Sciences

Vizzone answered 19/12, 2014 at 5:29 Comment(0)
E
2

Linux and Solaris both have robust Kernel implementations but Windows is dragging it's feet somewhat. There is a project to add one http://www.bluestop.org/SctpDrv/. If you try to run your own SCTP implementation alongside Kernel ones then you are likely to encounter issues with the two stacks interfering with each other.

The Kernel stacks offer comparable sockets interfaces so your application is portable across Linux / Solaris.

Regards

Elevenses answered 29/7, 2011 at 8:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.