evrpc.h revision 296373
154359Sroberto/*
254359Sroberto * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
354359Sroberto * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
454359Sroberto *
554359Sroberto * Redistribution and use in source and binary forms, with or without
654359Sroberto * modification, are permitted provided that the following conditions
7182007Sroberto * are met:
854359Sroberto * 1. Redistributions of source code must retain the above copyright
9182007Sroberto *    notice, this list of conditions and the following disclaimer.
10285612Sdelphij * 2. Redistributions in binary form must reproduce the above copyright
1154359Sroberto *    notice, this list of conditions and the following disclaimer in the
12285612Sdelphij *    documentation and/or other materials provided with the distribution.
1354359Sroberto * 3. The name of the author may not be used to endorse or promote products
1454359Sroberto *    derived from this software without specific prior written permission.
1554359Sroberto *
16285612Sdelphij * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17182007Sroberto * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18285612Sdelphij * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19182007Sroberto * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20182007Sroberto * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21182007Sroberto * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22182007Sroberto * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23182007Sroberto * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24182007Sroberto * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25182007Sroberto * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26182007Sroberto */
27182007Sroberto#ifndef EVENT1_EVRPC_H_INCLUDED_
28182007Sroberto#define EVENT1_EVRPC_H_INCLUDED_
29182007Sroberto
30182007Sroberto/** @file evrpc.h
31182007Sroberto
32182007Sroberto  An RPC system for Libevent.
33182007Sroberto
34182007Sroberto  The <evrpc.h> header is deprecated in Libevent 2.0 and later; please
35182007Sroberto  use <event2/rpc.h> instead.  Depending on what functionality you
36182007Sroberto  need, you may also want to include more of the other <event2/...>
37182007Sroberto  headers.
38182007Sroberto */
39182007Sroberto
40182007Sroberto#include <event.h>
41182007Sroberto#include <event2/rpc.h>
42182007Sroberto#include <event2/rpc_struct.h>
43182007Sroberto#include <event2/rpc_compat.h>
4454359Sroberto
4554359Sroberto#endif /* EVENT1_EVRPC_H_INCLUDED_ */
4654359Sroberto