mirror of
https://github.com/ipxe/ipxe
synced 2026-01-14 01:49:16 +03:00
Calling the parent PXE stack (the stack that loaded us, for undionly.kkpxe) can be useful for more than UNDI calls; for instance, it lets us get cached DHCP packets to avoid re-DHCP when working with embedded images. Signed-off-by: Marty Connor <mdc@etherboot.org>
12 lines
217 B
C
12 lines
217 B
C
#ifndef PXEPARENT_H
|
|
#define PXEPARENT_H
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <pxe_types.h>
|
|
|
|
extern int pxeparent_call ( SEGOFF16_t entry, unsigned int function,
|
|
void *params, size_t params_len );
|
|
|
|
#endif
|