~ubuntu-branches/ubuntu/trusty/ipxe/trusty

« back to all changes in this revision

Viewing changes to src/include/usr/ifmgmt.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-11-26 17:50:47 UTC
  • mfrom: (1.1.5) (17.1.1 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131126175047-8uf02a31ul9wpqgx
Tags: 1.0.0+git-20131111.c3d1e78-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - d/p/enable-https.patch: Enable HTTPS support.
  - d/control,grub-ipxe*: Split grub integration from ipxe->grub-ipxe.
  - d/control: Transition kvm-ipxe->ipxe-qemu for LTS->LTS upgrade.
  - d/ipxe-qemu.links: Add compat links from /usr/share/qemu to
    /usr/lib/ipxe/qemu.
  - d/ipxe-qemu.install: Install ne.rom as pxe-ne2k_isa.rom.
* All other changes dropped in preference to upstream Debian
  packaging.
* d/control: Add libiberty-dev to BD's to fix FTBFS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
FILE_LICENCE ( GPL2_OR_LATER );
11
11
 
12
12
struct net_device;
 
13
struct net_device_configurator;
13
14
 
14
15
extern int ifopen ( struct net_device *netdev );
 
16
extern int ifconf ( struct net_device *netdev,
 
17
                    struct net_device_configurator *configurator );
15
18
extern void ifclose ( struct net_device *netdev );
16
19
extern void ifstat ( struct net_device *netdev );
17
 
extern int iflinkwait ( struct net_device *netdev, unsigned int max_wait_ms );
 
20
extern int iflinkwait ( struct net_device *netdev, unsigned long timeout );
18
21
 
19
22
#endif /* _USR_IFMGMT_H */