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
16 lines
487 B
Plaintext
16 lines
487 B
Plaintext
1998-10-25 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* ppp.c: New file. Currently empty.
|
|
|
|
1998-06-14 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* kernel.s: New file - declaration of the table () function
|
|
via _syscall3 (); due to a bug in egcs, we cannot put this
|
|
into a C file.
|
|
|
|
1998-06-13 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
The code in this directory fetches all information
|
|
directly from the kernel. It uses the new table ()
|
|
system call from the `kernel' directory.
|