Under Linux the list of devices is available through different means. Libgtop looks into /proc/net/dev, but it doesn't tell if the devices are up or not. (It's possible to look into /sys/class/net/<DEVICE>/operstate for that (the sysfs is officially available since Linux 2.6).)
Under Linux the list of devices is available through different means.
Libgtop looks into /proc/net/dev, but it doesn't tell if the devices are up
or not. (It's possible to look into /sys/class/net/<DEVICE>/operstate for
that (the sysfs is officially available since Linux 2.6).)
I'm using a socket-based approach which - I'm not sure here though - should be compatible with FreeBsd and possibly even other platforms that implement it? Unsure whether it is POSIX compliant though. Good thing about this approach is it returns a list of network interfaces which are up (loopback included.)
And so is the approach I'd initially used so I've just now migrated the code to use GtkComboBoxEntry instead. However, it seems to have been deprecated too but I can't find the right replacement for it. It now works nicely though and, unlike my first attempt, integrates nicely with the current GTK theme.
Also, new feature now added:
work right out of the box upon adding plugin. Find first available network interface if one hasn't been specified. Reverts to first loopback device found (if one exists) if no network interfaces are available.
https://bugzilla.xfce.org/show_bug.cgi?id=7431
in addition, the fact that the plugin only presents a list of available (as in up) network interfaces seems to also address the bug report found here:
https://bugzilla.xfce.org/show_bug.cgi?id=3362
However this will only work if a network device hasn't been specified, which means the plugin will find the first up interface available. Might be nice to implement code to check whether specified interface is up and, if not, revert to finding first available network? Or possibly add an option to allow plugin to behave in this way?
New improved patch can be found here: http://paste.ubuntu.com/1085987/
(I've not been having luck lately attaching patches to bugzilla after the report has been created but will still try now)