mirror of
https://github.com/ipxe/ipxe
synced 2026-01-22 12:08:58 +03:00
Some past security reviews carried out for UEFI Secure Boot signing submissions have covered specific drivers or functional areas of iPXE. Mark all of the files comprising these areas as permitted for UEFI Secure Boot. Signed-off-by: Michael Brown <mcb30@ipxe.org>
16 lines
259 B
C
16 lines
259 B
C
#ifndef _USR_NSLOOKUP_H
|
|
#define _USR_NSLOOKUP_H
|
|
|
|
/** @file
|
|
*
|
|
* Standalone name resolution
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
FILE_SECBOOT ( PERMITTED );
|
|
|
|
extern int nslookup ( const char *name, const char *setting_name );
|
|
|
|
#endif /* _USR_NSLOOKUP_H */
|