ETHER: include threading vs polling in the eth_capabilities() information.

This commit is contained in:
Mark Pizzolato 2017-02-08 13:31:01 -08:00
parent 760ce434f6
commit a8e93d2998

View file

@ -969,7 +969,12 @@ static int _eth_get_system_id (char *buf, size_t buf_size)
const char *eth_capabilities(void)
{
return "Ethernet Packet transports"
#if defined (USE_READER_THREAD)
return "Threaded "
#else
return "Polled "
#endif
"Ethernet Packet transports"
#if defined (HAVE_PCAP_NETWORK)
":PCAP"
#endif