mirror of
https://github.com/ipxe/ipxe
synced 2025-12-10 21:41:09 +03:00
Kill off hotplug.h and just make net devices normal reference-counted
structures. DHCP still broken and #if 0'd out.
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
#include <gpxe/udp.h>
|
||||
#include <gpxe/async.h>
|
||||
#include <gpxe/retry.h>
|
||||
#include <gpxe/hotplug.h>
|
||||
|
||||
/** BOOTP/DHCP server port */
|
||||
#define BOOTPS_PORT 67
|
||||
@@ -449,6 +448,8 @@ struct dhcp_packet {
|
||||
struct dhcp_option_block options[NUM_OPT_BLOCKS];
|
||||
};
|
||||
|
||||
struct udp_connection {};
|
||||
|
||||
/** A DHCP session */
|
||||
struct dhcp_session {
|
||||
/** UDP connection for this session */
|
||||
@@ -456,8 +457,6 @@ struct dhcp_session {
|
||||
|
||||
/** Network device being configured */
|
||||
struct net_device *netdev;
|
||||
/** Persistent reference to network device */
|
||||
struct reference netdev_ref;
|
||||
|
||||
/** Options obtained from server */
|
||||
struct dhcp_option_block *options;
|
||||
|
||||
Reference in New Issue
Block a user