View | Details | Raw Unified | Return to bug 275601 | Differences between
and this patch

Collapse All | Expand All

(-)./Makefile (-4 / +5 lines)
Lines 1-12 Link Here
1
# Created by: Thomas Dreibholz <dreibh@iem.uni-due.de>
1
# Created by: Thomas Dreibholz <thomas.dreibholz@gmail.com>
2
2
3
PORTNAME=	sctplib
3
PORTNAME=	sctplib
4
PORTVERSION=	1.0.26
4
PORTVERSION=	1.0.31
5
CATEGORIES=	net
5
CATEGORIES=	net
6
MASTER_SITES=	https://www.uni-due.de/~be0001/sctplib/download/
6
MASTER_SITES=	https://www.nntb.no/~dreibh/sctplib/download/
7
7
8
MAINTAINER=	dreibh@iem.uni-due.de
8
MAINTAINER=	thomas.dreibholz@gmail.com
9
COMMENT=	User-space implementation of the SCTP protocol RFC 4960
9
COMMENT=	User-space implementation of the SCTP protocol RFC 4960
10
WWW=		https://www.nntb.no/~dreibh/sctplib/
10
11
11
LICENSE=	GPLv3+
12
LICENSE=	GPLv3+
12
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
(-)./distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1618745185
1
TIMESTAMP = 1701949801
2
SHA256 (sctplib-1.0.26.tar.gz) = 0d68d633d1062f921e72c8d503c3669097cee46d0704f0804509e557cda60f88
2
SHA256 (sctplib-1.0.31.tar.gz) = c8d75b2fa91904b6ff952e52215d845b9da7706ddba8cbc88d2ac3ee5321a3f2
3
SIZE (sctplib-1.0.26.tar.gz) = 1041876
3
SIZE (sctplib-1.0.31.tar.gz) = 1123414
(-)./pkg-descr (-11 / +9 lines)
Lines 1-14 Link Here
1
The SCTPLIB library is a prototype implementation of the Stream Control
1
The SCTPLIB library is a prototype implementation of the Stream Control
2
Transmission Protocol (SCTP), a message-oriented reliable transport protocol
2
Transmission Protocol (SCTP), a message-oriented reliable transport protocol
3
that supports multi-homing, and multiple message streams multiplexed within an
3
that supports multi-homing, and multiple message streams multiplexed within an
4
SCTP connection (also named association). SCTP is described in RFC 4960. See
4
SCTP connection (also named association). SCTP is described in RFC 4960. The
5
https://www.uni-due.de/~be0001/sctplib/ for details. The API of the library is
5
API of the library is modeled after Section 10 of RFC 4960, and most
6
modeled after Section 10 of RFC 4960, and most parameters and functions should
6
parameters and functions should be self-explanatory to the user familiar with
7
be self-explanatory to the user familiar with this document. In addition to
7
this document. In addition to these interface functions between an Upper Layer
8
these interface functions between an Upper Layer Protocol (ULP) and an SCTP
8
Protocol (ULP) and an SCTP instance, the library also provides a number of
9
instance, the library also provides a number of helper functions that can be
9
helper functions that can be used to manage callbacks and timers, as well as
10
used to manage callbacks and timers, as well as UDP sockets for simple IPC.
10
UDP sockets for simple IPC. Furthermore, SCTPLIB provides support for UDP
11
Furthermore, SCTPLIB provides support for UDP encapsulation, making it possible
11
encapsulation, making it possible to co-exist with kernel SCTP
12
to co-exist with kernel SCTP implementations.
12
implementations.
13
14
WWW: https://www.uni-due.de/~be0001/sctplib/

Return to bug 275601