1*805a1ce9Schristos /* $NetBSD: evdns.h,v 1.1.1.1 2017/01/31 21:14:53 christos Exp $ */ 2*805a1ce9Schristos /* 3*805a1ce9Schristos * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu> 4*805a1ce9Schristos * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson 5*805a1ce9Schristos * 6*805a1ce9Schristos * Redistribution and use in source and binary forms, with or without 7*805a1ce9Schristos * modification, are permitted provided that the following conditions 8*805a1ce9Schristos * are met: 9*805a1ce9Schristos * 1. Redistributions of source code must retain the above copyright 10*805a1ce9Schristos * notice, this list of conditions and the following disclaimer. 11*805a1ce9Schristos * 2. Redistributions in binary form must reproduce the above copyright 12*805a1ce9Schristos * notice, this list of conditions and the following disclaimer in the 13*805a1ce9Schristos * documentation and/or other materials provided with the distribution. 14*805a1ce9Schristos * 3. The name of the author may not be used to endorse or promote products 15*805a1ce9Schristos * derived from this software without specific prior written permission. 16*805a1ce9Schristos * 17*805a1ce9Schristos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18*805a1ce9Schristos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19*805a1ce9Schristos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20*805a1ce9Schristos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21*805a1ce9Schristos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22*805a1ce9Schristos * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23*805a1ce9Schristos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24*805a1ce9Schristos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25*805a1ce9Schristos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26*805a1ce9Schristos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27*805a1ce9Schristos */ 28*805a1ce9Schristos #ifndef EVENT1_EVDNS_H_INCLUDED_ 29*805a1ce9Schristos #define EVENT1_EVDNS_H_INCLUDED_ 30*805a1ce9Schristos 31*805a1ce9Schristos /** @file evdns.h 32*805a1ce9Schristos 33*805a1ce9Schristos A dns subsystem for Libevent. 34*805a1ce9Schristos 35*805a1ce9Schristos The <evdns.h> header is deprecated in Libevent 2.0 and later; please 36*805a1ce9Schristos use <event2/evdns.h> instead. Depending on what functionality you 37*805a1ce9Schristos need, you may also want to include more of the other <event2/...> 38*805a1ce9Schristos headers. 39*805a1ce9Schristos */ 40*805a1ce9Schristos 41*805a1ce9Schristos #include <event.h> 42*805a1ce9Schristos #include <event2/dns.h> 43*805a1ce9Schristos #include <event2/dns_compat.h> 44*805a1ce9Schristos #include <event2/dns_struct.h> 45*805a1ce9Schristos 46*805a1ce9Schristos #endif /* EVENT1_EVDNS_H_INCLUDED_ */ 47