blob: 199bb5543a91ad3dfc1e03e2f85894f78661e4cb [file] [log] [blame]
Trond Myklebuste571cbf2009-08-19 18:12:27 -04001/*
2 * Resolve DNS hostnames into valid ip addresses
3 */
4#ifndef __LINUX_FS_NFS_DNS_RESOLVE_H
5#define __LINUX_FS_NFS_DNS_RESOLVE_H
6
7#define NFS_DNS_HOSTNAME_MAXLEN (128)
8
Bryan Schumakerc2e81392010-08-11 09:37:53 +01009
10#ifdef CONFIG_NFS_USE_KERNEL_DNS
11static inline int nfs_dns_resolver_init(void)
12{
13 return 0;
14}
15
16static inline void nfs_dns_resolver_destroy(void)
17{}
18#else
Trond Myklebuste571cbf2009-08-19 18:12:27 -040019extern int nfs_dns_resolver_init(void);
20extern void nfs_dns_resolver_destroy(void);
Bryan Schumakerc2e81392010-08-11 09:37:53 +010021#endif
22
Trond Myklebuste571cbf2009-08-19 18:12:27 -040023extern ssize_t nfs_dns_resolve_name(char *name, size_t namelen,
24 struct sockaddr *sa, size_t salen);
25
26#endif