summaryrefslogtreecommitdiff
path: root/gpxe/src/include/usr/ifmgmt.h
blob: f762c7ba9e4e8fd56f9ec3d394af81ececcd6441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 */