Added network interface management commands

This commit is contained in:
Michael Brown
2007-01-10 01:55:07 +00:00
parent 98b6154c3e
commit d24b80acf2
7 changed files with 292 additions and 36 deletions

16
src/include/usr/ifmgmt.h Normal file
View File

@@ -0,0 +1,16 @@
#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 */