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 408B

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