You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ifmgmt.h 375B

1234567891011121314151617
  1. #ifndef _USR_IFMGMT_H
  2. #define _USR_IFMGMT_H
  3. /** @file
  4. *
  5. * Network interface management
  6. *
  7. */
  8. struct net_device;
  9. extern int ifopen ( struct net_device *netdev );
  10. extern void ifclose ( struct net_device *netdev );
  11. extern void ifstat ( struct net_device *netdev );
  12. extern int iflinkwait ( struct net_device *netdev, unsigned int max_wait_ms );
  13. #endif /* _USR_IFMGMT_H */