diff options
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/src/include/usr/ifmgmt.h')
-rw-r--r-- | contrib/syslinux-4.02/gpxe/src/include/usr/ifmgmt.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/src/include/usr/ifmgmt.h b/contrib/syslinux-4.02/gpxe/src/include/usr/ifmgmt.h new file mode 100644 index 0000000..f762c7b --- /dev/null +++ b/contrib/syslinux-4.02/gpxe/src/include/usr/ifmgmt.h @@ -0,0 +1,19 @@ +#ifndef _USR_IFMGMT_H +#define _USR_IFMGMT_H + +/** @file + * + * Network interface management + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +struct net_device; + +extern int ifopen ( struct net_device *netdev ); +extern void ifclose ( struct net_device *netdev ); +extern void ifstat ( struct net_device *netdev ); +extern int iflinkwait ( struct net_device *netdev, unsigned int max_wait_ms ); + +#endif /* _USR_IFMGMT_H */ |