evrpc.h revision 280849
1145683Sharti/*
2145683Sharti * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
3145683Sharti * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
4145683Sharti *
5145683Sharti * Redistribution and use in source and binary forms, with or without
6145683Sharti * modification, are permitted provided that the following conditions
7145683Sharti * are met:
8145683Sharti * 1. Redistributions of source code must retain the above copyright
9145683Sharti *    notice, this list of conditions and the following disclaimer.
10145683Sharti * 2. Redistributions in binary form must reproduce the above copyright
11145683Sharti *    notice, this list of conditions and the following disclaimer in the
12145683Sharti *    documentation and/or other materials provided with the distribution.
13145683Sharti * 3. The name of the author may not be used to endorse or promote products
14145683Sharti *    derived from this software without specific prior written permission.
15145683Sharti *
16145683Sharti * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17145683Sharti * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18145683Sharti * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19145683Sharti * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20145683Sharti * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21145683Sharti * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22145683Sharti * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23145683Sharti * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24145683Sharti * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25145683Sharti * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26145683Sharti */
27145683Sharti#ifndef EVENT1_EVRPC_H_INCLUDED_
28145683Sharti#define EVENT1_EVRPC_H_INCLUDED_
29145683Sharti
30145683Sharti/** @file evrpc.h
31145683Sharti
32145683Sharti  An RPC system for Libevent.
33145683Sharti
34145683Sharti  The <evrpc.h> header is deprecated in Libevent 2.0 and later; please
35145683Sharti  use <event2/rpc.h> instead.  Depending on what functionality you
36145683Sharti  need, you may also want to include more of the other <event2/...>
37  headers.
38 */
39
40#include <event.h>
41#include <event2/rpc.h>
42#include <event2/rpc_struct.h>
43#include <event2/rpc_compat.h>
44
45#endif /* EVENT1_EVRPC_H_INCLUDED_ */
46