mirror of
https://github.com/ipxe/ipxe
synced 2026-04-16 03:00:10 +03:00
Provide a buffer in base memory for code to fill with generated DHCP data.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#ifndef DHCP_BASEMEM_H
|
||||
#define DHCP_BASEMEM_H
|
||||
|
||||
#include <realmode.h>
|
||||
|
||||
/** Maximum length of a DHCP data buffer */
|
||||
#define DHCP_BASEMEM_LEN 1514
|
||||
|
||||
/** DHCP data buffer */
|
||||
extern char __data16_array ( dhcp_basemem, [DHCP_BASEMEM_LEN] );
|
||||
#define dhcp_basemem __use_data16 ( dhcp_basemem )
|
||||
|
||||
#endif /* DHCP_BASEMEM_H */
|
||||
Reference in New Issue
Block a user