1997-12-21 12:11:13 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1997 Brian Somers <brian@Awfulhak.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1997-11-18 14:52:08 +00:00
|
|
|
*/
|
|
|
|
|
1999-08-05 10:32:16 +00:00
|
|
|
#define SAMPLE_PERIOD 5 /* Default sample period */
|
1997-11-18 14:52:08 +00:00
|
|
|
|
1998-06-12 20:12:26 +00:00
|
|
|
#define THROUGHPUT_OVERALL 0x0001
|
|
|
|
#define THROUGHPUT_CURRENT 0x0002
|
|
|
|
#define THROUGHPUT_PEAK 0x0004
|
1999-08-05 10:32:16 +00:00
|
|
|
#define THROUGHPUT_ALL 0x0007
|
1998-06-12 20:12:26 +00:00
|
|
|
|
1997-11-18 14:52:08 +00:00
|
|
|
struct pppThroughput {
|
1999-08-05 10:32:16 +00:00
|
|
|
time_t uptime, downtime;
|
1999-05-08 11:07:56 +00:00
|
|
|
unsigned long long OctetsIn;
|
|
|
|
unsigned long long OctetsOut;
|
1999-08-05 10:32:16 +00:00
|
|
|
int SamplePeriod;
|
|
|
|
unsigned long long *SampleOctets;
|
1999-05-08 11:07:56 +00:00
|
|
|
unsigned long long OctetsPerSecond;
|
|
|
|
unsigned long long BestOctetsPerSecond;
|
1998-06-09 18:49:10 +00:00
|
|
|
time_t BestOctetsPerSecondTime;
|
1997-11-18 14:52:08 +00:00
|
|
|
int nSample;
|
1998-04-16 00:26:21 +00:00
|
|
|
unsigned rolling : 1;
|
1997-11-18 14:52:08 +00:00
|
|
|
struct pppTimer Timer;
|
1999-08-05 10:32:16 +00:00
|
|
|
struct {
|
|
|
|
void *data;
|
|
|
|
void (*fn)(void *v);
|
|
|
|
} callback;
|
1997-11-18 14:52:08 +00:00
|
|
|
};
|
|
|
|
|
1999-08-05 10:32:16 +00:00
|
|
|
extern void throughput_init(struct pppThroughput *, int);
|
|
|
|
extern void throughput_destroy(struct pppThroughput *);
|
1998-04-03 19:26:02 +00:00
|
|
|
extern void throughput_disp(struct pppThroughput *, struct prompt *);
|
1997-11-18 14:52:08 +00:00
|
|
|
extern void throughput_log(struct pppThroughput *, int, const char *);
|
1998-04-16 00:26:21 +00:00
|
|
|
extern void throughput_start(struct pppThroughput *, const char *, int);
|
1999-08-05 10:32:16 +00:00
|
|
|
extern void throughput_restart(struct pppThroughput *, const char *, int);
|
1997-11-18 14:52:08 +00:00
|
|
|
extern void throughput_stop(struct pppThroughput *);
|
1999-05-08 11:07:56 +00:00
|
|
|
extern void throughput_addin(struct pppThroughput *, long long);
|
|
|
|
extern void throughput_addout(struct pppThroughput *, long long);
|
1998-06-12 20:12:26 +00:00
|
|
|
extern void throughput_clear(struct pppThroughput *, int, struct prompt *);
|
1999-08-05 10:32:16 +00:00
|
|
|
extern void throughput_callback(struct pppThroughput *, void (*)(void *),
|
|
|
|
void *);
|
|
|
|
extern int throughput_uptime(struct pppThroughput *);
|