From owner-svn-ports-all@freebsd.org Sun Aug 18 11:11:22 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DB2C0C3FA6; Sun, 18 Aug 2019 11:11:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46BDrp5FYdz4Qgd; Sun, 18 Aug 2019 11:11:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 975E310A7; Sun, 18 Aug 2019 11:11:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7IBBMHY088062; Sun, 18 Aug 2019 11:11:22 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7IBBLFC088058; Sun, 18 Aug 2019 11:11:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201908181111.x7IBBLFC088058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 18 Aug 2019 11:11:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509201 - in head/net: . sctplib X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/net: . sctplib X-SVN-Commit-Revision: 509201 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2019 11:11:22 -0000 Author: pi Date: Sun Aug 18 11:11:21 2019 New Revision: 509201 URL: https://svnweb.freebsd.org/changeset/ports/509201 Log: New port: net/sctplib 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. WWW: https://www.uni-due.de/~be0001/sctplib/ PR: 239844 Submitted by: dreibh@iem.uni-due.de Added: head/net/sctplib/ head/net/sctplib/Makefile (contents, props changed) head/net/sctplib/distinfo (contents, props changed) head/net/sctplib/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Aug 18 10:50:13 2019 (r509200) +++ head/net/Makefile Sun Aug 18 11:11:21 2019 (r509201) @@ -1350,6 +1350,7 @@ SUBDIR += scapy SUBDIR += scnc SUBDIR += scr_ipfm + SUBDIR += sctplib SUBDIR += sdl2_net SUBDIR += sdl_net SUBDIR += seda Added: head/net/sctplib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sctplib/Makefile Sun Aug 18 11:11:21 2019 (r509201) @@ -0,0 +1,28 @@ +# Created by: Thomas Dreibholz +# $FreeBSD$ + +PORTNAME= sctplib +PORTVERSION= 1.0.24 +CATEGORIES= net +MASTER_SITES= https://www.uni-due.de/~be0001/sctplib/download/ + +MAINTAINER= dreibh@iem.uni-due.de +COMMENT= User-space implementation of the SCTP protocol RFC 4960 + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= gnome libtool pkgconfig +USE_LDCONFIG= yes +USE_GNOME= glib20 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-sctp-over-udp +INSTALL_TARGET= install-strip +PLIST_FILES= include/sctp.h \ + lib/libsctplib.a \ + lib/libsctplib.so \ + lib/libsctplib.so.1 \ + lib/libsctplib.so.1.0.8 + +.include Added: head/net/sctplib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sctplib/distinfo Sun Aug 18 11:11:21 2019 (r509201) @@ -0,0 +1,3 @@ +TIMESTAMP = 1565784282 +SHA256 (sctplib-1.0.24.tar.gz) = 82ce014e51b4405cdc3dc691ae5fa66ee861205e0c91426d5c9af18866f91046 +SIZE (sctplib-1.0.24.tar.gz) = 1037978 Added: head/net/sctplib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/sctplib/pkg-descr Sun Aug 18 11:11:21 2019 (r509201) @@ -0,0 +1,14 @@ +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. + +WWW: https://www.uni-due.de/~be0001/sctplib/