root/cherokee/trunk/cherokee/cherokee.h

Revision 1673, 2.0 kB (checked in by alo, 3 months ago)

--

Line 
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3 /* Cherokee
4  *
5  * Authors:
6  *      Alvaro Lopez Ortega <alvaro@alobbs.com>
7  *
8  * Copyright (C) 2001-2008 Alvaro Lopez Ortega
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of version 2 of the GNU General Public
12  * License as published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22  * USA
23  */
24
25 #ifndef CHEROKEE_H
26 #define CHEROKEE_H
27
28 #define CHEROKEE_INSIDE_CHEROKEE_H 1
29
30 /* Base library
31  */
32 #include <cherokee/macros.h>
33 #include <cherokee/common.h>
34 #include <cherokee/init.h>
35 #include <cherokee/util.h>
36 #include <cherokee/version.h>
37 #include <cherokee/buffer.h>
38 #include <cherokee/fdpoll.h>
39 #include <cherokee/http.h>
40 #include <cherokee/list.h>
41 #include <cherokee/mime_entry.h>
42 #include <cherokee/mime.h>
43 #include <cherokee/url.h>
44 #include <cherokee/header.h>
45 #include <cherokee/resolv_cache.h>
46 #include <cherokee/post.h>
47 #include <cherokee/avl.h>
48 #include <cherokee/trace.h>
49 #include <cherokee/cache.h>
50
51 /* Server library
52  */
53 #include <cherokee/config_node.h>
54 #include <cherokee/server.h>
55 #include <cherokee/module.h>
56 #include <cherokee/logger.h>
57 #include <cherokee/handler.h>
58 #include <cherokee/encoder.h>
59 #include <cherokee/connection.h>
60 #include <cherokee/plugin.h>
61 #include <cherokee/plugin_loader.h>
62 #include <cherokee/nonce.h>
63 #include <cherokee/config_entry.h>
64 #include <cherokee/rule.h>
65
66 /* Client library
67  */
68 #include <cherokee/downloader.h>
69
70 /* Config library
71  */
72 #include <cherokee/admin_client.h>
73 #include <cherokee/connection_info.h>
74
75
76 #undef CHEROKEE_INSIDE_CHEROKEE_H
77
78 #endif /* CHEROKEE_H */
Note: See TracBrowser for help on using the browser.