summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/lib/gethost.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/gethost.c')
-rw-r--r--contrib/ipfilter/lib/gethost.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/contrib/ipfilter/lib/gethost.c b/contrib/ipfilter/lib/gethost.c
deleted file mode 100644
index d97766f..0000000
--- a/contrib/ipfilter/lib/gethost.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2002-2004 by Darren Reed.
- *
- * See the IPFILTER.LICENCE file for details on licencing.
- *
- * $Id: gethost.c,v 1.3.2.2 2006/06/16 17:20:59 darrenr Exp $
- */
-
-#include "ipf.h"
-
-int gethost(name, hostp)
-char *name;
-u_32_t *hostp;
-{
- struct hostent *h;
- struct netent *n;
- u_32_t addr;
-
- if (!strcmp(name, "test.host.dots")) {
- *hostp = htonl(0xfedcba98);
- return 0;
- }
-
- if (!strcmp(name, "<thishost>"))
- name = thishost;
-
- h = gethostbyname(name);
- if (h != NULL) {
- if ((h->h_addr != NULL) && (h->h_length == sizeof(addr))) {
- bcopy(h->h_addr, (char *)&addr, sizeof(addr));
- *hostp = addr;
- return 0;
- }
- }
-
- n = getnetbyname(name);
- if (n != NULL) {
- *hostp = (u_32_t)htonl(n->n_net & 0xffffffff);
- return 0;
- }
- return -1;
-}
OpenPOWER on IntegriCloud