/* $NetBSD: hesiod.h,v 1.3 1999/01/24 23:53:18 lukem Exp $ */123/*-4* SPDX-License-Identifier: (BSD-2-Clause AND ISC)5*6* Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.7* All rights reserved.8*9* Redistribution and use in source and binary forms, with or without10* modification, are permitted provided that the following conditions11* are met:12* 1. Redistributions of source code must retain the above copyright13* notice, this list of conditions and the following disclaimer.14* 2. Redistributions in binary form must reproduce the above copyright15* notice, this list of conditions and the following disclaimer in the16* documentation and/or other materials provided with the distribution.17*18* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS19* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED20* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR21* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS22* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR23* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF24* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS25* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN26* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)27* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE28* POSSIBILITY OF SUCH DAMAGE.29*/3031/*32* Copyright (c) 1996 by Internet Software Consortium.33*34* Permission to use, copy, modify, and distribute this software for any35* purpose with or without fee is hereby granted, provided that the above36* copyright notice and this permission notice appear in all copies.37*38* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS39* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES40* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE41* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL42* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR43* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS44* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS45* SOFTWARE.46*/4748#ifndef _HESIOD_H_49#define _HESIOD_H_5051/* Application-visible indication that we have the new interfaces */5253#define HESIOD_INTERFACES5455/* Configuration information. */5657#ifndef _PATH_HESIOD_CONF /* Configuration file. */58#define _PATH_HESIOD_CONF "/etc/hesiod.conf"59#endif6061#define DEF_RHS "" /* Defaults if HESIOD_CONF */62#define DEF_LHS "" /* file is not present. */6364/* Error codes (for backwards compatibility) */6566#define HES_ER_UNINIT -1 /* uninitialized */67#define HES_ER_OK 0 /* no error */68#define HES_ER_NOTFOUND 1 /* Hesiod name not found by server */69#define HES_ER_CONFIG 2 /* local problem (no config file?) */70#define HES_ER_NET 3 /* network problem */7172/* Declaration of routines */7374#include <sys/cdefs.h>7576__BEGIN_DECLS77int hesiod_init(void **);78char **hesiod_resolve(void *, const char *, const char *);79void hesiod_free_list(void *, char **);80char *hesiod_to_bind(void *, const char *, const char *);81void hesiod_end(void *);8283/* backwards compatibility */84int hes_init(void);85char *hes_to_bind(const char *, const char *);86char **hes_resolve(const char *, const char *);87int hes_error(void);88void hes_free(char **);89__END_DECLS9091#endif /* ! _HESIOD_H_ */929394