1 /* 2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") 3 * Copyright (c) 1996,1999 by Internet Software Consortium. 4 * 5 * Permission to use, copy, modify, and distribute this software for any 6 * purpose with or without fee is hereby granted, provided that the above 7 * copyright notice and this permission notice appear in all copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES 10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR 12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 15 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16 */ 17 18 /*! \file 19 * \brief 20 * This file is primarily maintained by <tytso@mit.edu> and <ghudson@mit.edu>. 21 */ 22 23 /* 24 * $Id: hesiod.h,v 1.4 2005/04/27 04:56:14 sra Exp $ 25 */ 26 27 #ifndef _HESIOD_H_INCLUDED 28 #define _HESIOD_H_INCLUDED 29 30 int hesiod_init __P((void **)); 31 void hesiod_end __P((void *)); 32 char * hesiod_to_bind __P((void *, const char *, const char *)); 33 char ** hesiod_resolve __P((void *, const char *, const char *)); 34 void hesiod_free_list __P((void *, char **)); 35 struct __res_state * __hesiod_res_get __P((void *)); 36 void __hesiod_res_set __P((void *, struct __res_state *, 37 void (*)(void *))); 38 39 #endif /*_HESIOD_H_INCLUDED*/ 40