1
0
mirror of https://github.com/simh/simh.git synced 2026-01-30 05:25:16 +00:00

ETHER: Add missing declaration when Ethernet support is unavailable

This commit is contained in:
Mark Pizzolato
2024-11-11 20:10:50 -10:00
parent 8b1f15f233
commit a6aaa0a84f

View File

@@ -976,6 +976,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)