00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under a BSD-style license. 00005 See the file COPYING for details. 00006 */ 00007 00008 #ifndef DOMAIN_NAME_H 00009 #define DOMAIN_NAME_H 00010 00018 #define DOMAIN_NAME_MAX 256 00019 00026 int domain_name_lookup( const char *name, char *addr ); 00027 00034 int domain_name_lookup_reverse( const char *addr, char *name ); 00035 00036 #endif