iPXE
dhcpmgmt.h
Go to the documentation of this file.
1#ifndef _USR_DHCPMGMT_H
2#define _USR_DHCPMGMT_H
3
4/** @file
5 *
6 * DHCP management
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13struct net_device;
14
15extern int pxebs ( struct net_device *netdev, unsigned int pxe_type );
16
17#endif /* _USR_DHCPMGMT_H */
int pxebs(struct net_device *netdev, unsigned int pxe_type)
Definition dhcpmgmt.c:42
static struct net_device * netdev
Definition gdbudp.c:53
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
A network device.
Definition netdevice.h:353