diff options
author | Nick Kralevich <nnk@google.com> | 2013-03-29 23:53:40 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-03-29 23:53:40 +0000 |
commit | b24b6e1419382146f85571cdda27d48fb348141d (patch) | |
tree | 0f8f789171df0626e7cd0f4a15e101211254f739 /libc | |
parent | d02dd19d51fd78c4cfea8be4eaba3df1668910c4 (diff) | |
parent | c01274c4aa8494ccef355badd02474ca3cfddc59 (diff) | |
download | android_bionic-b24b6e1419382146f85571cdda27d48fb348141d.tar.gz android_bionic-b24b6e1419382146f85571cdda27d48fb348141d.tar.bz2 android_bionic-b24b6e1419382146f85571cdda27d48fb348141d.zip |
Merge "resolv_cache: hide some libc private functions" into jb-mr2-dev
Diffstat (limited to 'libc')
-rw-r--r-- | libc/private/resolv_cache.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/private/resolv_cache.h b/libc/private/resolv_cache.h index 4f32fb75f..d70857de2 100644 --- a/libc/private/resolv_cache.h +++ b/libc/private/resolv_cache.h @@ -28,52 +28,64 @@ #ifndef _RESOLV_CACHE_H_ #define _RESOLV_CACHE_H_ +#include <sys/cdefs.h> + struct __res_state; struct resolv_cache; /* forward */ /* gets the cache for an interface. Set ifname argument to NULL or * empty buffer ('\0') to get cache for default interface. * returned cache might be NULL*/ +__LIBC_HIDDEN__ extern struct resolv_cache* __get_res_cache(const char* ifname); /* this gets called everytime we detect some changes in the DNS configuration * and will flush the cache */ +__LIBC_HIDDEN__ extern void _resolv_cache_reset( unsigned generation ); /* Gets the address of the n:th name server for the default interface * Return length of address on success else 0. * Note: The first name server is at n = 1 */ +__LIBC_HIDDEN__ extern int _resolv_cache_get_nameserver(int n, char* addr, int addrLen); /* Gets the address of the n:th name server for a certain interface * Return length of address on success else 0. * Note: The first name server is at n = 1 */ +__LIBC_HIDDEN__ extern int _resolv_cache_get_nameserver_for_iface(const char* ifname, int n, char* addr, int addrLen); /* Gets addrinfo of the n:th name server associated with an interface. * NULL is returned if no address if found. * Note: The first name server is at n = 1. */ +__LIBC_HIDDEN__ extern struct addrinfo* _resolv_cache_get_nameserver_addr_for_iface(const char* ifname, int n); /* Gets addrinfo of the n:th name server associated with the default interface * NULL is returned if no address if found. * Note: The first name server is at n = 1. */ +__LIBC_HIDDEN__ extern struct addrinfo* _resolv_cache_get_nameserver_addr(int n); /* gets the address associated with the default interface */ +__LIBC_HIDDEN__ extern struct in_addr* _resolv_get_addr_of_default_iface(); /* gets the address associated with the specified interface */ +__LIBC_HIDDEN__ extern struct in_addr* _resolv_get_addr_of_iface(const char* ifname); /* Copy the name of the default interface to provided buffer. * Return length of buffer on success on failure -1 is returned */ +__LIBC_HIDDEN__ extern int _resolv_get_default_iface(char* buff, int buffLen); /* sets the name server addresses to the provided res_state structure. The * name servers are retrieved from the cache which is associated * with the interface to which the res_state structure is associated */ +__LIBC_HIDDEN__ extern int _resolv_populate_res_for_iface(struct __res_state* statp); typedef enum { @@ -83,6 +95,7 @@ typedef enum { RESOLV_CACHE_FOUND /* the cache found the answer */ } ResolvCacheStatus; +__LIBC_HIDDEN__ extern ResolvCacheStatus _resolv_cache_lookup( struct resolv_cache* cache, const void* query, @@ -94,6 +107,7 @@ _resolv_cache_lookup( struct resolv_cache* cache, /* add a (query,answer) to the cache, only call if _resolv_cache_lookup * did return RESOLV_CACHE_NOTFOUND */ +__LIBC_HIDDEN__ extern void _resolv_cache_add( struct resolv_cache* cache, const void* query, @@ -102,6 +116,7 @@ _resolv_cache_add( struct resolv_cache* cache, int answerlen ); /* Notify the cache a request failed */ +__LIBC_HIDDEN__ extern void _resolv_cache_query_failed( struct resolv_cache* cache, const void* query, |