http://git.etherboot.org
/
gpxe.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Moved include/in.h to include/gpxe/in.h, so that it can be included by
[gpxe.git]
/
src
/
include
/
resolv.h
1
#ifndef RESOLV_H
2
#define RESOLV_H
3
4
#include <gpxe/in.h>
5
#include "tables.h"
6
7
struct resolver {
8
const char *name;
9
int ( * resolv ) ( struct in_addr *address, const char *name );
10
};
11
12
#define __resolver __table(resolver,01)
13
14
extern int resolv ( struct in_addr *address, const char *name );
15
16
#endif /* RESOLV_H */