From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 24 07:30:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8191D106567B for ; Fri, 24 Jun 2011 07:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5D3468FC22 for ; Fri, 24 Jun 2011 07:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p5O7UH5R070782 for ; Fri, 24 Jun 2011 07:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p5O7UHfX070777; Fri, 24 Jun 2011 07:30:17 GMT (envelope-from gnats) Resent-Date: Fri, 24 Jun 2011 07:30:17 GMT Resent-Message-Id: <201106240730.p5O7UHfX070777@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthew Luckie Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50C5C1065670 for ; Fri, 24 Jun 2011 07:26:35 +0000 (UTC) (envelope-from mjl@luckie.org.nz) Received: from mailfilter9.ihug.co.nz (mailfilter9.ihug.co.nz [203.109.136.9]) by mx1.freebsd.org (Postfix) with ESMTP id F252D8FC1A for ; Fri, 24 Jun 2011 07:26:34 +0000 (UTC) Received: from 118-92-54-98.dsl.dyn.ihug.co.nz (HELO spandex.luckie.org.nz) ([118.92.54.98]) by cust.filter6.content.vf.net.nz with ESMTP/TLS/DHE-RSA-AES256-SHA; 24 Jun 2011 18:56:53 +1200 Received: from mjl by spandex.luckie.org.nz with local (Exim 4.76 (FreeBSD)) (envelope-from ) id 1Qa0Jx-000PSB-Hu for FreeBSD-gnats-submit@freebsd.org; Fri, 24 Jun 2011 18:56:53 +1200 Message-Id: Date: Fri, 24 Jun 2011 18:56:53 +1200 From: Matthew Luckie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/158248: [patch] update net/scamper to 20110623 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Luckie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2011 07:30:17 -0000 >Number: 158248 >Category: ports >Synopsis: [patch] update net/scamper to 20110623 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Jun 24 07:30:16 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Matthew Luckie >Release: FreeBSD 8.2-RELEASE i386 >Organization: >Environment: System: FreeBSD spandex.luckie.org.nz 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 25 13:44:21 NZDT 2011 root@spandex.luckie.org.nz:/usr/obj/usr/src/sys/spandex i386 >Description: update scamper to 20110623. Changelog: * provide documentation for libscamperfile * initial draft of a man page for the warts file format. * fix ping -O spoof * fix tracelb and sniff bugs that cause scamper to crash * fix sc_analysis_dump, sc_warts2pcap, and sc_wartscat man pages * fix sc_warts2text to read from stdin if no files specified * add -a (all) -m (pair method) and -n (use dns) options to sc_tracediff * provide --with-privsep-user, --with-privsep-dir, --with-privsep-dir-user, --with-privsep-dir-group options to ./configure. By default, these are set to "nobody", "/var/empty", "root", "wheel". * provide -O copyout option to scamper itself, which allows all data written over the control socket in "attach" mode to also be sent to a named file. useful for debugging. documented in the scamper man page. * provide ability to specify the source address of a PTB in tbit. * in attach mode, each command now returns a command ID as part of the OK response. a command may be halted before it completes by issuing a halt command over the same control socket. * when sanity checking the probe size requested in ping, take account of the timestamp IP option correctly. >How-To-Repeat: >Fix: --- patch-scamper-20110623 begins here --- diff -uNr scamper/Makefile scamper-new/Makefile --- scamper/Makefile 2011-05-04 07:20:33.000000000 +1200 +++ scamper-new/Makefile 2011-06-24 16:21:36.000000000 +1200 @@ -6,7 +6,7 @@ # PORTNAME= scamper -PORTVERSION= 20110503 +PORTVERSION= 20110623 CATEGORIES= net ipv6 MASTER_SITES= http://www.wand.net.nz/scamper/ DISTNAME= ${PORTNAME}-cvs-${PORTVERSION} @@ -21,5 +21,7 @@ MAN1= scamper.1 sc_ally.1 sc_analysis_dump.1 sc_attach.1 \ sc_tracediff.1 sc_warts2pcap.1 sc_warts2text.1 \ sc_wartscat.1 sc_wartsdump.1 +MAN3= libscamperfile.3 +MAN5= warts.5 .include diff -uNr scamper/distinfo scamper-new/distinfo --- scamper/distinfo 2011-05-04 07:20:33.000000000 +1200 +++ scamper-new/distinfo 2011-06-24 16:18:17.000000000 +1200 @@ -1,2 +1,2 @@ -SHA256 (scamper-cvs-20110503.tar.gz) = 4cb29ed159d3c214b73a2957325a432bdd2ab03e86eedb2383e0b1827a76c792 -SIZE (scamper-cvs-20110503.tar.gz) = 1087267 +SHA256 (scamper-cvs-20110623.tar.gz) = 948657dbec28ad8a643171b0f4aceab4009b6d4000422a6155388923fbfcdd2c +SIZE (scamper-cvs-20110623.tar.gz) = 1097477 --- patch-scamper-20110623 ends here --- >Release-Note: >Audit-Trail: >Unformatted: