From owner-svn-ports-all@freebsd.org Tue Feb 19 19:46:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EE7F14FB15F; Tue, 19 Feb 2019 19:46:46 +0000 (UTC) (envelope-from sunpoet@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 447A96FECC; Tue, 19 Feb 2019 19:46:46 +0000 (UTC) (envelope-from sunpoet@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 3220D227B6; Tue, 19 Feb 2019 19:46:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1JJkkLq058412; Tue, 19 Feb 2019 19:46:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1JJkjk1058408; Tue, 19 Feb 2019 19:46:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201902191946.x1JJkjk1058408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 19 Feb 2019 19:46:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493377 - in head/net: . libusipp X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/net: . libusipp X-SVN-Commit-Revision: 493377 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 447A96FECC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Tue, 19 Feb 2019 19:46:46 -0000 Author: sunpoet Date: Tue Feb 19 19:46:44 2019 New Revision: 493377 URL: https://svnweb.freebsd.org/changeset/ports/493377 Log: Add libusipp 2.24 usi++ (UNIX Socket Interface) is a low-level network-library for sending/receiving IP, IP6, ARP etc. packets directly on RAW or PACKET sockets. It can also be used for network-monitoring and rapid development of pentesting tools. It requires libpcap and libdnet if you want the Layer2 DNET provider. WWW: https://github.com/stealth/libusipp Added: head/net/libusipp/ head/net/libusipp/Makefile (contents, props changed) head/net/libusipp/distinfo (contents, props changed) head/net/libusipp/pkg-descr (contents, props changed) head/net/libusipp/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Feb 19 19:45:40 2019 (r493376) +++ head/net/Makefile Tue Feb 19 19:46:44 2019 (r493377) @@ -417,6 +417,7 @@ SUBDIR += libtnl SUBDIR += libtrace SUBDIR += libunp + SUBDIR += libusipp SUBDIR += libutp SUBDIR += libvncserver SUBDIR += libwebsockets Added: head/net/libusipp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/Makefile Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,30 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= libusipp +PORTVERSION= 2.24 +DISTVERSIONPREFIX= libusipp- +DISTVERSIONSUFFIX= s +CATEGORIES= net + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Unix socket interface for C++ raw IP/IP6/UDP/TCP, layer 2 framework + +LICENSE= GPLv3+ + +USES= autoreconf compiler:c++11-lang gmake + +GNU_CONFIGURE= yes +WRKSRC_SUBDIR= src +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= stealth + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/usi++ ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/../usi++/*.h ${STAGEDIR}${PREFIX}/include/usi++ + ${INSTALL_DATA} ${WRKSRC}/libusi++.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libusi++.so ${STAGEDIR}${PREFIX}/lib + +.include Added: head/net/libusipp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/distinfo Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549818671 +SHA256 (stealth-libusipp-libusipp-2.24s_GH0.tar.gz) = da7703df75ba17cde726b1df85067627229b829893583c27fe082d77c505ed96 +SIZE (stealth-libusipp-libusipp-2.24s_GH0.tar.gz) = 69940 Added: head/net/libusipp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/pkg-descr Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,6 @@ +usi++ (UNIX Socket Interface) is a low-level network-library for +sending/receiving IP, IP6, ARP etc. packets directly on RAW or PACKET sockets. +It can also be used for network-monitoring and rapid development of pentesting +tools. It requires libpcap and libdnet if you want the Layer2 DNET provider. + +WWW: https://github.com/stealth/libusipp Added: head/net/libusipp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libusipp/pkg-plist Tue Feb 19 19:46:44 2019 (r493377) @@ -0,0 +1,33 @@ +include/usi++/80211.h +include/usi++/Layer2.h +include/usi++/RX.h +include/usi++/RX_fd.h +include/usi++/RX_string.h +include/usi++/TX.h +include/usi++/TX_IP.h +include/usi++/TX_IP6.h +include/usi++/TX_dnet_eth.h +include/usi++/TX_dnet_ip.h +include/usi++/TX_pcap.h +include/usi++/TX_pcap_eth.h +include/usi++/TX_string.h +include/usi++/arp.h +include/usi++/config.h +include/usi++/datalink.h +include/usi++/eapol.h +include/usi++/icmp.h +include/usi++/icmp6.h +include/usi++/ip.h +include/usi++/ip6.h +include/usi++/ipcomp.h +include/usi++/misc.h +include/usi++/object.h +include/usi++/radiotap.h +include/usi++/refcount.h +include/usi++/tcp.h +include/usi++/udp.h +include/usi++/usi++.h +include/usi++/usi-structs-compat.h +include/usi++/usi-structs.h +lib/libusi++.a +lib/libusi++.so