summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorMartin Baulig <martin@src.gnome.org>1998-10-25 17:07:16 +0000
committerMartin Baulig <martin@src.gnome.org>1998-10-25 17:07:16 +0000
commit9114af9fdfb000d463740c366293b44dc016da9f (patch)
treeeabe85b7525efb99490d33b9b46acd3e9a92da70 /misc
parent0e57efd4e56d6345a96aeda2bf60a852247cc269 (diff)
downloadlibgtop-9114af9fdfb000d463740c366293b44dc016da9f.tar.gz
Added new feature to get PPP/ISDN support:
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
Diffstat (limited to 'misc')
-rw-r--r--misc/.cvsignore2
-rw-r--r--misc/Makefile.am2
-rw-r--r--misc/i4b_acct.h75
-rw-r--r--misc/i4b_acct.txt96
4 files changed, 175 insertions, 0 deletions
diff --git a/misc/.cvsignore b/misc/.cvsignore
new file mode 100644
index 00000000..3dda7298
--- /dev/null
+++ b/misc/.cvsignore
@@ -0,0 +1,2 @@
+Makefile.in
+Makefile
diff --git a/misc/Makefile.am b/misc/Makefile.am
new file mode 100644
index 00000000..4f9aa50d
--- /dev/null
+++ b/misc/Makefile.am
@@ -0,0 +1,2 @@
+EXTRA_DIST = i4b_acct.h i4b_acct.txt
+
diff --git a/misc/i4b_acct.h b/misc/i4b_acct.h
new file mode 100644
index 00000000..b5c3e479
--- /dev/null
+++ b/misc/i4b_acct.h
@@ -0,0 +1,75 @@
+/* This file contains modified code from `/usr/src/i4b/driver/i4b_isppp.c'
+ * which belongs to the I4B package.
+ *
+ * The original copyright of this file [/usr/src/i4b/driver/i4b_isppp.c] is
+ *
+ * -----------------------------------------------------------------------------
+ *
+ * Copyright (c) 1997 Joerg Wunsch. All rights reserved.
+ *
+ * Copyright (c) 1997, 1998 Hellmuth Michaelis. 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.
+ * 3. Neither the name of the author nor the names of any co-contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ * 4. Altered versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software and/or documentation.
+ *
+ * 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.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
+#define I4BISPPPACCT 1 /* enable accounting messages */
+
+struct i4bisppp_softc {
+ /*
+ * struct sppp starts with a struct ifnet, but we gotta allocate
+ * more space for it. NB: do not relocate this union, it must
+ * be first in isppp_softc. The tls and tlf hooks below want to
+ * convert a ``struct sppp *'' into a ``struct isppp_softc *''.
+ */
+ union {
+ struct ifnet scu_if;
+ struct sppp scu_sp;
+ } sc_if_un;
+#define sc_if sc_if_un.scu_if
+ int sc_state; /* state of the interface */
+#ifndef __FreeBSD__
+ int sc_unit; /* unit number for Net/OpenBSD */
+#endif
+ void *sc_cdp; /* ptr to call descriptor */
+
+#ifdef I4BISPPPACCT
+ int sc_iinb; /* isdn driver # of inbytes */
+ int sc_ioutb; /* isdn driver # of outbytes */
+ int sc_inb; /* # of bytes rx'd */
+ int sc_outb; /* # of bytes tx'd */
+ int sc_linb; /* last # of bytes rx'd */
+ int sc_loutb; /* last # of bytes tx'd */
+ int sc_fn; /* flag, first null acct */
+#endif
+
+#if defined(__FreeBSD__) && __FreeBSD__ >= 3
+ struct callout_handle sc_ch;
+#endif
+};
diff --git a/misc/i4b_acct.txt b/misc/i4b_acct.txt
new file mode 100644
index 00000000..4fd7d024
--- /dev/null
+++ b/misc/i4b_acct.txt
@@ -0,0 +1,96 @@
+To get ISDN statistics with the I4B package do the following:
+
+* Look at the declaration of `struct i4bisppp_softc' in
+ /usr/src/i4b/driver/i4b_isppp.c.
+
+ It is looking like this:
+
+ struct i4bisppp_softc {
+ /*
+ * struct sppp starts with a struct ifnet, but we gotta allocate
+ * more space for it. NB: do not relocate this union, it must
+ * be first in isppp_softc. The tls and tlf hooks below want to
+ * convert a ``struct sppp *'' into a ``struct isppp_softc *''.
+ */
+ union {
+ struct ifnet scu_if;
+ struct sppp scu_sp;
+ } sc_if_un;
+ #define sc_if sc_if_un.scu_if
+ int sc_state; /* state of the interface */
+ #ifndef __FreeBSD__
+ int sc_unit; /* unit number for Net/OpenBSD */
+ #endif
+ call_desc_t *sc_cdp; /* ptr to call descriptor */
+
+ #ifdef I4BISPPPACCT
+ int sc_iinb; /* isdn driver # of inbytes */
+ int sc_ioutb; /* isdn driver # of outbytes */
+ int sc_inb; /* # of bytes rx'd */
+ int sc_outb; /* # of bytes tx'd */
+ int sc_linb; /* last # of bytes rx'd */
+ int sc_loutb; /* last # of bytes tx'd */
+ int sc_fn; /* flag, first null acct */
+ #endif
+
+ #if defined(__FreeBSD__) && __FreeBSD__ >= 3
+ struct callout_handle sc_ch;
+ #endif
+ } i4bisppp_softc[NI4BISPPP];
+
+* Create a new file /usr/include/machine/i4b_acct.h and put the declaration
+ of this structure in this file.
+
+* Replace `call_desc_t *' with `void *' in it.
+
+* The result should look like this:
+
+ struct i4bisppp_softc {
+ /*
+ * struct sppp starts with a struct ifnet, but we gotta allocate
+ * more space for it. NB: do not relocate this union, it must
+ * be first in isppp_softc. The tls and tlf hooks below want to
+ * convert a ``struct sppp *'' into a ``struct isppp_softc *''.
+ */
+ union {
+ struct ifnet scu_if;
+ struct sppp scu_sp;
+ } sc_if_un;
+ #define sc_if sc_if_un.scu_if
+ int sc_state; /* state of the interface */
+ #ifndef __FreeBSD__
+ int sc_unit; /* unit number for Net/OpenBSD */
+ #endif
+ void *sc_cdp; /* ptr to call descriptor */
+
+ #ifdef I4BISPPPACCT
+ int sc_iinb; /* isdn driver # of inbytes */
+ int sc_ioutb; /* isdn driver # of outbytes */
+ int sc_inb; /* # of bytes rx'd */
+ int sc_outb; /* # of bytes tx'd */
+ int sc_linb; /* last # of bytes rx'd */
+ int sc_loutb; /* last # of bytes tx'd */
+ int sc_fn; /* flag, first null acct */
+ #endif
+
+ #if defined(__FreeBSD__) && __FreeBSD__ >= 3
+ struct callout_handle sc_ch;
+ #endif
+ };
+
+* Put a
+
+ #define I4BISPPPACCT 1 /* enable accounting messages */
+
+ at the top of your /usr/include/machine/i4b_acct.h
+
+* This file should now look about like `misc/i4b_acct.h' in the LibGTop
+ source directory.
+
+* Done.
+
+This is necessary since LibGTop reads its data directly out of the kernel
+and the `struct i4bisppp_softc' is only defined there and in no header file
+(someone can tell the I4B people to put it in some header file ?).
+
+Martin <martin@home-of-linux.org>