ETHER: Add stub for clean compiles when building without network support

This commit is contained in:
B. Scott Michel 2022-09-19 12:17:48 -07:00 committed by Mark Pizzolato
parent 84bf5f4d14
commit b588b4c28c

View file

@ -964,6 +964,10 @@ t_stat eth_filter (ETH_DEV* dev, int addr_count, ETH_MAC* const addresses,
t_stat eth_filter_hash (ETH_DEV* dev, int addr_count, ETH_MAC* const addresses, t_stat eth_filter_hash (ETH_DEV* dev, int addr_count, ETH_MAC* const addresses,
ETH_BOOL all_multicast, ETH_BOOL promiscuous, ETH_MULTIHASH* const hash) ETH_BOOL all_multicast, ETH_BOOL promiscuous, ETH_MULTIHASH* const hash)
{return SCPE_NOFNC;} {return SCPE_NOFNC;}
t_stat eth_filter_hash_ex(ETH_DEV* dev, int addr_count, ETH_MAC* const addresses,
ETH_BOOL all_multicast, ETH_BOOL promiscuous,
ETH_BOOL match_broadcast, ETH_MULTIHASH* const hash)
{return SCPE_NOFNC;}
const char *eth_version (void) const char *eth_version (void)
{return NULL;} {return NULL;}
int eth_devices(int max, ETH_LIST* list, ETH_BOOL framers) int eth_devices(int max, ETH_LIST* list, ETH_BOOL framers)