9114af9fdf
enum {
GLIBTOP_PPP_STATE_UNKNOWN = 0,
GLIBTOP_PPP_STATE_HANGUP,
GLIBTOP_PPP_STATE_ONLINE
};
struct _glibtop_ppp
{
u_int64_t flags,
state, /* GLIBTOP_PPP_STATE */
bytes_in, /* GLIBTOP_PPP_BYTES_IN */
bytes_out; /* GLIBTOP_PPP_BYTES_OUT */
};
Currently only implemented in the FreeBSD port with ISDN via I4B. - Martin
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
1998-10-25 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* ppp.c: New file to get PPP/ISDN statistics. Currently this only
|
|
get ISDN statistics if you have the I4B package.
|
|
|
|
To get the number of bytes transferred in/out you need to read the
|
|
file `misc/i4b_acct.txt' in the LibGTop source directory to see
|
|
how to enable this.
|
|
|
|
1998-10-03 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* procstate.c (glibtop_get_procstate_s): Use correct values for
|
|
the `state' field.
|
|
|
|
* proclist.c (glibtop_get_proclist_p): Honor the GLIBTOP_EXCLUDE_IDLE
|
|
and GLIBTOP_EXCLUDE_SYSTEM flags of the `which' parameter.
|
|
|
|
1998-08-24 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* *.c (glibtop_init_p): Using correct `(1 << GLIBTOP_SYSDPES_*)'.
|
|
* cpu.c, mem.c: Removed `const' from sysctl () constants to keep
|
|
compiler happy.
|
|
|
|
* procmem.c: Added missing call to `glibtop_init_p'.
|
|
|
|
* prockernel.c: Casting `nwchan' to `unsigned long' since this
|
|
normally has the same size than a pointer. Well, is there a
|
|
FreeBSD for 64bit architectures ?
|
|
|
|
1998-08-08 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* swap.c: Added swap usage based upton the source code
|
|
of `pinfo'.
|
|
|
|
1998-08-07 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* *: Imported FreeBSD port of libgtop from Josh Sled.
|
|
|
|
* ChangeLog: New file.
|