]> code.citadel.org Git - citadel.git/blobdiff - citadel/locate_host.c
* Use syslog-compatible logging levels in lprintf(); the loglevel chosen
[citadel.git] / citadel / locate_host.c
index 5ef13c8eb6df5f937bf76fef70e03ea0519c484e..09aef65451542cf7f90d5a860f164b191fef74e7 100644 (file)
@@ -35,7 +35,7 @@ void locate_host(char *tbuf, size_t n,
        int a1, a2, a3, a4;
        char address_string[SIZ];
 
-       lprintf(9, "locate_host() called\n");
+       lprintf(CTDL_DEBUG, "locate_host() called\n");
 
 #ifdef HAVE_NONREENTRANT_NETDB
        begin_critical_section(S_NETDB);
@@ -83,7 +83,7 @@ bad_dns:
 #endif
 
        tbuf[63] = 0;
-       lprintf(9, "locate_host() exiting\n");
+       lprintf(CTDL_DEBUG, "locate_host() exiting\n");
 }
 
 
@@ -145,3 +145,27 @@ int rbl_check(char *message_to_spammer) {
        }
        return(0);
 }
+
+/*
+ * Convert a host name to a dotted quad address. 
+ * Returns zero on success or nonzero on failure.
+ */
+int hostname_to_dotted_quad(char *addr, char *host) {
+       struct hostent *ch;
+       const char *i;
+       int a1, a2, a3, a4;
+
+       ch = gethostbyname(host);
+       if (ch == NULL) {
+               strcpy(addr, "0.0.0.0");
+               return(1);
+       }
+
+       i = (const char *) ch->h_addr_list[0];
+       a1 = ((*i++) & 0xff);
+       a2 = ((*i++) & 0xff);
+       a3 = ((*i++) & 0xff);
+       a4 = ((*i++) & 0xff);
+       sprintf(addr, "%d.%d.%d.%d", a1, a2, a3, a4);
+       return(0);
+}