mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 20:40:25 +03:00
17 lines
312 B
C
17 lines
312 B
C
#ifndef RESOLV_H
|
|
#define RESOLV_H
|
|
|
|
#include <gpxe/in.h>
|
|
#include "tables.h"
|
|
|
|
struct resolver {
|
|
const char *name;
|
|
int ( * resolv ) ( struct in_addr *address, const char *name );
|
|
};
|
|
|
|
#define __resolver __table(resolver,01)
|
|
|
|
extern int resolv ( struct in_addr *address, const char *name );
|
|
|
|
#endif /* RESOLV_H */
|