1 /* 2 * Networking AIM - Networking Application Interface Module for MostCore 3 * 4 * Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG 5 * 6 * This program is distributed in the hope that it will be useful, 7 * but WITHOUT ANY WARRANTY; without even the implied warranty of 8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 9 * GNU General Public License for more details. 10 * 11 * This file is licensed under GPLv2. 12 */ 13 #ifndef _NETWORKING_H_ 14 #define _NETWORKING_H_ 15 16 #include "mostcore.h" 17 18 19 void most_deliver_netinfo(struct most_interface *iface, 20 unsigned char link_stat, unsigned char *mac_addr); 21 22 23 #endif 24