summaryrefslogtreecommitdiff
path: root/src/dnsclient.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-26 18:47:11 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-26 18:47:11 +0000
commit1fda8899b14c666c6eacddeaacc3e8a15302cf2a (patch)
treecafbe0d90b6137643411a096f69eeb50ad2738dc /src/dnsclient.h
parentb3e657a00e70fbf328792ab1dd2da9724ffa9b98 (diff)
downloadtinyproxy-1fda8899b14c666c6eacddeaacc3e8a15302cf2a.tar.gz
tinyproxy-1fda8899b14c666c6eacddeaacc3e8a15302cf2a.zip
I didn't like the DNS co-process design so I changed tinyproxy from a
threading model to a standard pre-forked model. This means I don't need the DNS co-process files. Gone.
Diffstat (limited to '')
-rw-r--r--src/dnsclient.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/dnsclient.h b/src/dnsclient.h
deleted file mode 100644
index 32bad58..0000000
--- a/src/dnsclient.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* $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