mirror of
https://github.com/ipxe/ipxe
synced 2026-01-03 10:23:00 +03:00
17 lines
296 B
C
17 lines
296 B
C
|
|
#ifndef _USR_IFMGMT_H
|
||
|
|
#define _USR_IFMGMT_H
|
||
|
|
|
||
|
|
/** @file
|
||
|
|
*
|
||
|
|
* Network interface management
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
struct net_device;
|
||
|
|
|
||
|
|
extern int ifopen ( struct net_device *netdev );
|
||
|
|
extern void ifclose ( struct net_device *netdev );
|
||
|
|
extern void ifstat ( struct net_device *netdev );
|
||
|
|
|
||
|
|
#endif /* _USR_IFMGMT_H */
|