diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-23 04:40:06 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-23 04:40:06 +0000 |
commit | d22d6d181b05f4db4016ebda675605ba8a470011 (patch) | |
tree | a1e31c2a8027e1a9317f653aa8de0d4901301260 /src/dnsclient.h | |
parent | 2ee61db6afc88fcea904d0905df0dd920616eb54 (diff) |
Initial addition to CVS. These functions create an API for accessing the
dnsserver child process.
Diffstat (limited to 'src/dnsclient.h')
-rw-r--r-- | src/dnsclient.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/dnsclient.h b/src/dnsclient.h new file mode 100644 index 0000000..32bad58 --- /dev/null +++ b/src/dnsclient.h @@ -0,0 +1,32 @@ +/* $Id: dnsclient.h,v 1.1 2002-05-23 04:40:06 rjkaes Exp $ + * + * See 'dnsclient.c' for a detailed description. + * + * Copyright (C) 2002 Robert James Kaes (rjkaes@flarenet.com) + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2, or (at your option) any + * later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + */ + +#ifndef TINYPROXY_DNSCLIENT_H +#define TINYPROXY_DNSCLIENT_H + +extern int start_dnsserver(const char* dnsserver_location, const char* path); +extern int stop_dnsserver(void); + +extern int dns_connect(void); +extern void dns_disconnect(int dns); + +extern int dns_gethostbyaddr(int dns, const char* ipaddr, char** hostname, + size_t hostlen); +extern int dns_getaddrbyname(int dns, const char* name, + struct in_addr** addresses); + +#endif |