Release 4.11 fs/nfs/dns_resolve.h
/*
* Resolve DNS hostnames into valid ip addresses
*/
#ifndef __LINUX_FS_NFS_DNS_RESOLVE_H
#define __LINUX_FS_NFS_DNS_RESOLVE_H
#define NFS_DNS_HOSTNAME_MAXLEN (128)
#ifdef CONFIG_NFS_USE_KERNEL_DNS
static inline int nfs_dns_resolver_init(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Bryan Schumaker | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
static inline void nfs_dns_resolver_destroy(void)
{}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Bryan Schumaker | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline int nfs_dns_resolver_cache_init(struct net *net)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stanislav Kinsbursky | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
static inline void nfs_dns_resolver_cache_destroy(struct net *net)
{}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stanislav Kinsbursky | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
#else
extern int nfs_dns_resolver_init(void);
extern void nfs_dns_resolver_destroy(void);
extern int nfs_dns_resolver_cache_init(struct net *net);
extern void nfs_dns_resolver_cache_destroy(struct net *net);
#endif
extern ssize_t nfs_dns_resolve_name(struct net *net, char *name,
size_t namelen, struct sockaddr *sa, size_t salen);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stanislav Kinsbursky | 51 | 40.80% | 1 | 33.33% |
Trond Myklebust | 47 | 37.60% | 1 | 33.33% |
Bryan Schumaker | 27 | 21.60% | 1 | 33.33% |
Total | 125 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.