From b588b4c28c0482acd50733fee770b135d1a3e0e7 Mon Sep 17 00:00:00 2001 From: "B. Scott Michel" Date: Mon, 19 Sep 2022 12:17:48 -0700 Subject: [PATCH] ETHER: Add stub for clean compiles when building without network support --- sim_ether.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sim_ether.c b/sim_ether.c index 83ebe664..3d4ca071 100644 --- a/sim_ether.c +++ b/sim_ether.c @@ -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, ETH_BOOL all_multicast, ETH_BOOL promiscuous, ETH_MULTIHASH* const hash) {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) {return NULL;} int eth_devices(int max, ETH_LIST* list, ETH_BOOL framers)