#include "netif.h"
int main ()
{
NetInterface ni;
ni.show_net_interface ();
ni.show_net_interface ("lo");
ni.show_net_interface ("eth0");
ni.show_net_interface ("lo", HW_ADDRESS_NAME);
ni.show_net_interface ("lo", IP_ADDRESS_NAME);
ni.show_net_interface ("eth0", HW_ADDRESS_NAME);
ni.show_net_interface ("eth0", NETMASK_NAME);
ni.show_net_interface ("eth0", BROADCAST_NAME);
ni.show_net_interface ("", MTU_NAME);
ni.show_net_interface ("", METRIC_NAME);
ni.show_net_interface ("abc", "xyz");
ni.show_net_interface ("abc", HW_ADDRESS_NAME);
ni.show_net_interface ("lo", "xyz");
return 0;
}