net/sctplib: Update to 1.0.31

ChangeLog: https://www.nntb.no/~dreibh/sctplib/

PR:		275601
Reported by:	thomas.dreibholz@gmail.com (maintainer)
This commit is contained in:
Thomas Dreibholz 2023-12-18 14:07:26 +01:00 committed by Fernando Apesteguía
parent 3ccda27b3b
commit 4a63f26519
3 changed files with 16 additions and 16 deletions

View File

@ -1,11 +1,11 @@
PORTNAME= sctplib
PORTVERSION= 1.0.26
PORTVERSION= 1.0.31
CATEGORIES= net
MASTER_SITES= https://www.uni-due.de/~be0001/sctplib/download/
MASTER_SITES= https://www.nntb.no/~dreibh/sctplib/download/
MAINTAINER= dreibh@iem.uni-due.de
MAINTAINER= thomas.dreibholz@gmail.com
COMMENT= User-space implementation of the SCTP protocol RFC 4960
WWW= https://www.uni-due.de/~be0001/sctplib/
WWW= https://www.nntb.no/~dreibh/sctplib/
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1618745185
SHA256 (sctplib-1.0.26.tar.gz) = 0d68d633d1062f921e72c8d503c3669097cee46d0704f0804509e557cda60f88
SIZE (sctplib-1.0.26.tar.gz) = 1041876
TIMESTAMP = 1701949801
SHA256 (sctplib-1.0.31.tar.gz) = c8d75b2fa91904b6ff952e52215d845b9da7706ddba8cbc88d2ac3ee5321a3f2
SIZE (sctplib-1.0.31.tar.gz) = 1123414

View File

@ -1,12 +1,12 @@
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.
SCTP connection (also named association). SCTP is described in RFC 4960. 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.