summaryrefslogtreecommitdiff
path: root/ares_private.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-05-20 01:24:19 +0000
committerYang Tse <yangsita@gmail.com>2008-05-20 01:24:19 +0000
commit0129767bf9fddbc0bceded80075722a735fbbadd (patch)
tree25d3ee5f4f46203af766d03283530be8b32dea57 /ares_private.h
parentc31375137d1e3e039ff86cea353d069350d8251f (diff)
downloadc-ares-0129767bf9fddbc0bceded80075722a735fbbadd.tar.gz
c-ares-0129767bf9fddbc0bceded80075722a735fbbadd.tar.bz2
c-ares-0129767bf9fddbc0bceded80075722a735fbbadd.zip
if'def out private function ares__tvdiff(), it is not in use yet.
Diffstat (limited to 'ares_private.h')
-rw-r--r--ares_private.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ares_private.h b/ares_private.h
index 6ec4dc4..ba0015e 100644
--- a/ares_private.h
+++ b/ares_private.h
@@ -279,7 +279,9 @@ int ares__read_line(FILE *fp, char **buf, int *bufsize);
void ares__free_query(struct query *query);
short ares__generate_new_id(rc4_key* key);
struct timeval ares__tvnow(void);
+#if 0 /* Not used */
long ares__tvdiff(struct timeval t1, struct timeval t2);
+#endif
#define ARES_SWAP_BYTE(a,b) \
{ unsigned char swapByte = *(a); *(a) = *(b); *(b) = swapByte; }