Difference between revisions of "Sctplib"

From Free Software Directory
Jump to: navigation, search
(Added Debian link)
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Entry
 
{{Entry
|Name=Sctplib
+
|Name=SCTPLIB
|Short description=Userland implementation of the Stream Control Transmission Protocol (SCTP)
+
|Short description=User-space implementation of the SCTP protocol RFC 4960
|Full description=The 'sctplib' library is a fairly complete prototype implementation of the Stream Control Transmission Protocol (SCTP), a message-oriented transport protocol that supports multi-homing and multiple message streams multiplexed within an SCTP connection. The API of the library was modeled after section 10 of RFC 2960; most parameters and functions should be self-explanatory to the user familiar with this document. The library also provides various helper functions for managing timers and UDP communication.
+
|Full description=The SCTPLIB library is a prototype implementation of the Stream Control Transmission Protocol (SCTP), a message-oriented reliable transport protocol that supports multi-homing, and multiple message streams multiplexed within an SCTP connection (also named association). SCTP is described in RFC 4960. See https://www.uni-due.de/~be0001/sctplib/ for details. The API of the library is modeled after Section 10 of RFC 4960, and most parameters and functions should be self-explanatory to the user familiar with this document. In addition to these interface functions between an Upper Layer Protocol (ULP) and an SCTP instance, the library also provides a number of helper functions that can be used to manage callbacks and timers, as well as UDP sockets for simple IPC. Furthermore, SCTPLIB provides support for UDP encapsulation, making it possible to co-exist with kernel SCTP implementations.
|Homepage URL=http://www.sctp.de/sctp.html
+
|Homepage URL=https://www.uni-due.de/~be0001/sctplib/index.html
|User level=none
+
|Is High Priority Project=No
|Component programs=SCTP based echo,discard,daytime servers (proof of concept)
+
|VCS checkout command=git clone https://github.com/dreibh/sctplib
 
|Computer languages=C
 
|Computer languages=C
|Accepts cryptocurrency donations=No
+
|Documentation note=Jungmaier, Andreas: ``Das Transportprotokoll SCTP´´ (PDF, 2437 KiB, in German), Ph.D. Dissertation, University of Duisburg-Essen, Faculty of Economics, Institute for Computer Science and Business Information Systems, August 16, 2005, URL: https://duepublico.uni-duisburg-essen.de/servlets/DerivateServlet/Derivate-13244/dissertation_jungmaier.pdf .
|Keywords=stream,message,protocol,UDP,Stream Control Transmission Protocol,SCTP,transport,multi-homing,RFC 2960,timers
+
|Decommissioned or Obsolete=No
|Version identifier=1.0.15
+
|Keywords=stream,message,protocol,UDP,Stream Control Transmission Protocol,SCTP,transport,multi-homing,RFC 4960,timers
|Version date=2013/10/25
+
|Version identifier=1.0.23
 +
|Version date=2019/08/07
 
|Version status=stable
 
|Version status=stable
|Version download=http://www.sctp.de/download/sctplib-1.0.15.tar.gz
+
|Version download=https://www.uni-due.de/~be0001/sctplib/download/sctplib-1.0.23.tar.gz
 
|Last review by=Bendikker
 
|Last review by=Bendikker
 
|Last review date=2018/02/27
 
|Last review date=2018/02/27
 
|Submitted date=2011-04-01
 
|Submitted date=2011-04-01
 +
|User level=intermediate
 +
|Component programs=SCTP based echo, discard, daytime servers (proof of concept)
 +
|Accepts cryptocurrency donations=No
 +
|OpenPGP signature=https://www.uni-due.de/~be0001/sctplib/download/sctplib-1.0.23.tar.gz.asc
 +
|OpenPGP public key=https://www.uni-due.de/~be0001/key.asc
 +
|Test entry=No
 
|Is GNU=No
 
|Is GNU=No
 
|License verified date=2004-01-22
 
|License verified date=2004-01-22
 
}}
 
}}
 
{{Project license
 
{{Project license
|License=LGPLv2.1orlater
+
|License=LGPLv3orlater
 
|License verified by=Janet Casey
 
|License verified by=Janet Casey
 
|License verified date=2004-01-22
 
|License verified date=2004-01-22
 +
}}
 +
{{Person
 +
|Real name=Thomas Dreibholz
 +
|Role=Maintainer
 +
|Email=dreibh@iem.uni-due.de
 +
|Username=dreibh
 
}}
 
}}
 
{{Person
 
{{Person
 
|Real name=Andreas Jungmaier
 
|Real name=Andreas Jungmaier
 
|Role=Maintainer
 
|Role=Maintainer
|Email=ajung@exp-math.uni-essen.de
+
|Email=andreas.jungmaier@web.de
 
}}
 
}}
 
{{Person
 
{{Person
 
|Real name=See the AUTHORS file in the distribution for a complete list
 
|Real name=See the AUTHORS file in the distribution for a complete list
 
|Role=Contributor
 
|Role=Contributor
}}
 
{{Resource
 
|Resource audience=Debian (Ref)
 
|Resource URL=https://tracker.debian.org/pkg/sctplib
 
 
}}
 
}}
 
{{Resource
 
{{Resource
Line 49: Line 58:
 
{{Software category
 
{{Software category
 
|Interface=library
 
|Interface=library
 +
|Library=C
 
|Network-hookup=protocol
 
|Network-hookup=protocol
 +
|Programming-language=C
 +
|Runs-on=Windows, BSD, OS X, GNU/Linux
 
|System-administration=network-hookup
 
|System-administration=network-hookup
 
|Use=system-administration
 
|Use=system-administration
Line 55: Line 67:
 
{{Software prerequisite
 
{{Software prerequisite
 
|Prerequisite kind=Required to use
 
|Prerequisite kind=Required to use
|Prerequisite description=glib 1.2.10 or later
+
|Prerequisite description=glib 2.0.0 or later
 
}}
 
}}
 
{{Featured}}
 
{{Featured}}

Revision as of 17:40, 12 August 2019


[edit]

SCTPLIB

https://www.uni-due.de/~be0001/sctplib/index.html
User-space implementation of the SCTP protocol RFC 4960

The SCTPLIB library is a prototype implementation of the Stream Control Transmission Protocol (SCTP), a message-oriented reliable transport protocol that supports multi-homing, and multiple message streams multiplexed within an SCTP connection (also named association). SCTP is described in RFC 4960. See https://www.uni-due.de/~be0001/sctplib/ for details. The API of the library is modeled after Section 10 of RFC 4960, and most parameters and functions should be self-explanatory to the user familiar with this document. In addition to these interface functions between an Upper Layer Protocol (ULP) and an SCTP instance, the library also provides a number of helper functions that can be used to manage callbacks and timers, as well as UDP sockets for simple IPC. Furthermore, SCTPLIB provides support for UDP encapsulation, making it possible to co-exist with kernel SCTP implementations.





Licensing

License

Verified by

Verified on

Notes

Verified by

Janet Casey

Verified on

22 January 2004

Notes

License




Leaders and contributors

Contact(s)Role
See the AUTHORS file in the distribution for a complete list Contributor
Andreas Jungmaier Maintainer
Thomas Dreibholz (Dreibh)Maintainer


Resources and communication

AudienceResource typeURI
VCS Repository Webviewhttps://github.com/dreibh/sctplib
SCTP DiscussionsMailing List Info/Archivehttps://lists.franken.de/lists/arc/sctp-discussion/
HelpE-mailmailto:announce@sctp.de
SCTP Announcement ListMailing List Info/Archivehttps://lists.franken.de/lists/arc/sctp-announce/
Bug Tracking,Developer,SupportE-mailmailto:discussion@sctp.de
Bug Trackinghttps://github.com/dreibh/sctplib/issues
Changeloghttps://github.com/dreibh/sctplib/blob/master/ChangeLog


Software prerequisites

KindDescription
Required to useglib 2.0.0 or later




Entry



























Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the page “GNU Free Documentation License”.

The copyright and license notices on this page only apply to the text on this page. Any software or copyright-licenses or other similar notices described in this text has its own copyright notice and license, which can usually be found in the distribution or license text itself.