From owner-cvs-src@FreeBSD.ORG Fri Oct 8 19:23:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C25E16A4CE; Fri, 8 Oct 2004 19:23:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92C0843D31; Fri, 8 Oct 2004 19:23:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i98JNBUL024501; Fri, 8 Oct 2004 19:23:11 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i98JNB7m024500; Fri, 8 Oct 2004 19:23:11 GMT (envelope-from rwatson) Message-Id: <200410081923.i98JNB7m024500@repoman.freebsd.org> From: Robert Watson Date: Fri, 8 Oct 2004 19:23:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/netrate/netblast Makefile netblast.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2004 19:23:11 -0000 rwatson 2004-10-08 19:23:11 UTC FreeBSD src repository Added files: tools/tools/netrate/netblast Makefile netblast.c Log: Add a version of netsend that uses the interval timer rather than explicit clock reads to set an overall duration to the send, and blasts rather than trying to clock output. The goal of netblast, unlike netsend, is to send as many UDP packets as possible; the cost is that there's no ability to control the rate, and there's less accuracy in the timing as the interval timer granularity is relatively low. Revision Changes Path 1.1 +8 -0 src/tools/tools/netrate/netblast/Makefile (new) 1.1 +197 -0 src/tools/tools/netrate/netblast/netblast.c (new)