From 5144c3e1278b4f95c79c05fc2277baaec33fecdc Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Wed, 13 Jul 2011 11:08:51 +0200 Subject: [PATCH] Expand to support ifmedia(4) types as found on BSD. https://bugzilla.gnome.org/show_bug.cgi?id=652713 --- doc/reference/libgtop-sections.txt | 1 + include/glibtop/netlist.h | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/reference/libgtop-sections.txt b/doc/reference/libgtop-sections.txt index 0d99d695..3ca859b4 100644 --- a/doc/reference/libgtop-sections.txt +++ b/doc/reference/libgtop-sections.txt @@ -167,6 +167,7 @@ glibtop_get_uptime_s netlist Net List GLIBTOP_NETLIST_NUMBER +GLIBTOP_NETLIST_MEDIA_TYPE GLIBTOP_MAX_NETLIST glibtop_netlist glibtop_get_netlist diff --git a/include/glibtop/netlist.h b/include/glibtop/netlist.h index f821c77d..8857a63e 100644 --- a/include/glibtop/netlist.h +++ b/include/glibtop/netlist.h @@ -26,8 +26,9 @@ G_BEGIN_DECLS #define GLIBTOP_NETLIST_NUMBER 0 +#define GLIBTOP_NETLIST_MEDIA_TYPE 1 -#define GLIBTOP_MAX_NETLIST 1 +#define GLIBTOP_MAX_NETLIST 2 typedef struct _glibtop_netlist glibtop_netlist; @@ -35,6 +36,7 @@ struct _glibtop_netlist { guint64 flags; guint32 number; + gchar *dev_type; }; char** glibtop_get_netlist(glibtop_netlist *buf);