summaryrefslogtreecommitdiff
path: root/examples/ChangeLog
diff options
context:
space:
mode:
authorMartin Baulig <martin@src.gnome.org>1998-10-26 10:39:14 +0000
committerMartin Baulig <martin@src.gnome.org>1998-10-26 10:39:14 +0000
commit1289b92d063f31d7ec3675f0956d86dfcdc63b23 (patch)
treef3cd9f31c9bbf351c0d3d4cbd5cd935a349b9ca3 /examples/ChangeLog
parentbdc4e08454cb6d175f4e6e36e5a63aa46dae09b5 (diff)
downloadlibgtop-1289b92d063f31d7ec3675f0956d86dfcdc63b23.tar.gz
Added new features to get network load:
typedef struct _glibtop_netload glibtop_netload; struct _glibtop_netload { u_int64_t flags, mtu, /* GLIBTOP_NETLOAD_MTU */ address, /* GLIBTOP_NETLOAD_ADDRESS */ packets_in, /* GLIBTOP_NETLOAD_PACKETS_IN */ packets_out, /* GLIBTOP_NETLOAD_PACKETS_OUT */ bytes_in, /* GLIBTOP_NETLOAD_BYTES_IN */ bytes_out, /* GLIBTOP_NETLOAD_BYTES_OUT */ errors_in, /* GLIBTOP_NETLOAD_ERRORS_IN */ errors_out, /* GLIBTOP_NETLOAD_ERRORS_OUT */ collisions; /* GLIBTOP_NETLOAD_COLLISIONS */ }; Returns network load of the given interface, it is specified as string like `isppp' or `ippp0': extern void glibtop_get_netload_l __P((glibtop *, glibtop_netload *, const char *));
Diffstat (limited to 'examples/ChangeLog')
-rw-r--r--examples/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/ChangeLog b/examples/ChangeLog
index 0931a08b..ade9ce5a 100644
--- a/examples/ChangeLog
+++ b/examples/ChangeLog
@@ -1,5 +1,10 @@
1998-10-26 Martin Baulig <martin@home-of-linux.org>
+ * netload.c: New file. Gets network load for the interface
+ given as command line argument.
+
+1998-10-26 Martin Baulig <martin@home-of-linux.org>
+
* first.c (glibtop_get_proc_args): Get command line arguments.
* second.c: Likewise.