1290001Sglebius/*
2290001Sglebius * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
3290001Sglebius * Copyright (C) 1999-2001  Internet Software Consortium.
4290001Sglebius *
5290001Sglebius * Permission to use, copy, modify, and/or distribute this software for any
6290001Sglebius * purpose with or without fee is hereby granted, provided that the above
7290001Sglebius * copyright notice and this permission notice appear in all copies.
8290001Sglebius *
9290001Sglebius * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10290001Sglebius * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11290001Sglebius * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12290001Sglebius * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13290001Sglebius * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14290001Sglebius * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15290001Sglebius * PERFORMANCE OF THIS SOFTWARE.
16290001Sglebius */
17290001Sglebius
18290001Sglebius/* $Id: netdb.h,v 1.11 2007/06/19 23:47:19 tbox Exp $ */
19290001Sglebius
20290001Sglebius#ifndef ISC_NETDB_H
21290001Sglebius#define ISC_NETDB_H 1
22290001Sglebius
23290001Sglebius/*****
24290001Sglebius ***** Module Info
25290001Sglebius *****/
26290001Sglebius
27290001Sglebius/*! \file
28290001Sglebius * \brief
29290001Sglebius * Portable netdb.h support.
30290001Sglebius *
31290001Sglebius * This module is responsible for defining the get<x>by<y> APIs.
32290001Sglebius *
33290001Sglebius * MP:
34290001Sglebius *\li	No impact.
35290001Sglebius *
36290001Sglebius * Reliability:
37290001Sglebius *\li	No anticipated impact.
38290001Sglebius *
39290001Sglebius * Resources:
40290001Sglebius *\li	N/A.
41290001Sglebius *
42290001Sglebius * Security:
43290001Sglebius *\li	No anticipated impact.
44290001Sglebius *
45290001Sglebius * Standards:
46290001Sglebius *\li	BSD API
47290001Sglebius */
48290001Sglebius
49290001Sglebius/***
50290001Sglebius *** Imports.
51290001Sglebius ***/
52290001Sglebius
53290001Sglebius#include <isc/net.h>
54290001Sglebius
55290001Sglebius#include <netdb.h>
56290001Sglebius
57290001Sglebius#endif /* ISC_NETDB_H */
58