diff options
Diffstat (limited to 'src/include/usr')
| -rw-r--r-- | src/include/usr/ifmgmt.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/usr/ifmgmt.h b/src/include/usr/ifmgmt.h new file mode 100644 index 000000000..c7d35da88 --- /dev/null +++ b/src/include/usr/ifmgmt.h @@ -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 */ |
