Added handling for ARCNET on the Linux port.

This commit is contained in:
skarg
2005-09-06 20:41:01 +00:00
parent 7368ba24f6
commit 4ba79baf1e
8 changed files with 77 additions and 13 deletions
+16
View File
@@ -109,6 +109,22 @@ uint16_t datalink_receive(
#endif
}
void datalink_cleanup(void)
{
#ifdef BACDL_ETHERNET
ethernet_cleanup();
#endif
#ifdef BACDL_BIP
bip_cleanup();
#endif
#ifdef BACDL_ARCNET
arcnet_cleanup();
#endif
#ifdef BACDL_MSTP
dlmstp_cleanup();
#endif
}
void datalink_get_broadcast_address(
BACNET_ADDRESS *dest) // destination address
{