summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/throughput.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1998-06-12 20:12:26 +0000
committerbrian <brian@FreeBSD.org>1998-06-12 20:12:26 +0000
commit02a56dd03f499041230d5e52ef0187e6af7cdce2 (patch)
tree8946fabbe9f87bf3394279c760b3b42b87f5641e /usr.sbin/ppp/throughput.c
parentfd91ad6629443073196c8a7be06c623864255fbb (diff)
downloadFreeBSD-src-02a56dd03f499041230d5e52ef0187e6af7cdce2.zip
FreeBSD-src-02a56dd03f499041230d5e52ef0187e6af7cdce2.tar.gz
Add the ``clear'' function.
Mostly submitted by: "Stephane E. Potvin" <sepotvin@videotron.ca>
Diffstat (limited to 'usr.sbin/ppp/throughput.c')
-rw-r--r--usr.sbin/ppp/throughput.c43
1 files changed, 42 insertions, 1 deletions
diff --git a/usr.sbin/ppp/throughput.c b/usr.sbin/ppp/throughput.c
index c1bc81b..6773f2e 100644
--- a/usr.sbin/ppp/throughput.c
+++ b/usr.sbin/ppp/throughput.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: throughput.c,v 1.6 1998/06/09 18:49:08 brian Exp $
+ * $Id: throughput.c,v 1.7 1998/06/12 17:45:41 brian Exp $
*/
#include <sys/types.h>
@@ -158,3 +158,44 @@ throughput_addout(struct pppThroughput *t, int n)
{
t->OctetsOut += n;
}
+
+void
+throughput_clear(struct pppThroughput *t, int clear_type, struct prompt *prompt)
+{
+ if (clear_type & (THROUGHPUT_OVERALL|THROUGHPUT_CURRENT)) {
+ int i;
+
+ for (i = 0; i < SAMPLE_PERIOD; i++)
+ t->SampleOctets[i] = 0;
+ t->nSample = 0;
+ }
+
+ if (clear_type & THROUGHPUT_OVERALL) {
+ int secs_up;
+
+ secs_up = t->uptime ? time(NULL) - t->uptime : 1;
+ prompt_Printf(prompt, "overall cleared (was %5ld bytes/sec)\n",
+ (t->OctetsIn + t->OctetsOut)/secs_up);
+ t->OctetsIn = t->OctetsOut = 0;
+ t->uptime = time(NULL);
+ }
+
+ if (clear_type & THROUGHPUT_CURRENT) {
+ prompt_Printf(prompt, "current cleared (was %5d bytes/sec)\n",
+ t->OctetsPerSecond);
+ t->OctetsPerSecond = 0;
+ }
+
+ if (clear_type & THROUGHPUT_PEAK) {
+ char *time_buf, *last;
+
+ time_buf = ctime(&t->BestOctetsPerSecondTime);
+ last = time_buf + strlen(time_buf);
+ if (last > time_buf && *--last == '\n')
+ *last = '\0';
+ prompt_Printf(prompt, "peak cleared (was %5d bytes/sec on %s)\n",
+ t->BestOctetsPerSecond, time_buf);
+ t->BestOctetsPerSecond = 0;
+ t->BestOctetsPerSecondTime = time(NULL);
+ }
+}
OpenPOWER on IntegriCloud