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

12345678910111213141516171819202122
  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_OR_UBDL );
  9. struct net_device;
  10. struct net_device_configurator;
  11. extern int ifopen ( struct net_device *netdev );
  12. extern int ifconf ( struct net_device *netdev,
  13. struct net_device_configurator *configurator );
  14. extern void ifclose ( struct net_device *netdev );
  15. extern void ifstat ( struct net_device *netdev );
  16. extern int iflinkwait ( struct net_device *netdev, unsigned long timeout );
  17. #endif /* _USR_IFMGMT_H */