diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-10-18 03:44:06 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-10-18 03:44:06 +0000 |
commit | ac111ee8c6fc454e9a51dfe9357e1c67603756b7 (patch) | |
tree | 58b30ccf8c67bec0dd4f873ad3824bdb9cb05dfb /src | |
parent | 7a613287ee232e9952904bdae99d58f6ec222d0d (diff) | |
download | tinyproxy-ac111ee8c6fc454e9a51dfe9357e1c67603756b7.tar.gz tinyproxy-ac111ee8c6fc454e9a51dfe9357e1c67603756b7.zip |
Added netinet/in.h so that tinyproxy will compile on OpenBSD.
Diffstat (limited to '')
-rw-r--r-- | src/dnscache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dnscache.h b/src/dnscache.h index 7c03eec..e0cdb7f 100644 --- a/src/dnscache.h +++ b/src/dnscache.h @@ -1,4 +1,4 @@ -/* $Id: dnscache.h,v 1.5 2001-08-29 03:58:39 rjkaes Exp $ +/* $Id: dnscache.h,v 1.6 2001-10-18 03:44:06 rjkaes Exp $ * * See 'dnscache.c' for a detailed description. * @@ -18,6 +18,7 @@ #ifndef _TINYPROXY_DNSCACHE_H_ #define _TINYPROXY_DNSCACHE_H_ +#include <netinet/in.h> #include <arpa/inet.h> extern int dnscache(struct in_addr *addr, char *domain); |