ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/atheme.h
Revision: 1.1
Committed: Thu Jul 19 08:24:50 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Log Message:
initial import. the most important changes since Atheme are:
- fixed many memory leaks
- fixed many bugs
- converted to C++ and use more STL containers
- added a (not very enhanced yet) perl module
- greatly improved XML-RPC speed
- added a JSON-RPC module with code from json-cpp
- added a valgrind memcheck module to operserv
- added a more object oriented base64 implementation
- added a specialised unit test framework
- improved stability
- use gettimeofday() if available
- reworked adding/removing commands
- MemoServ IGNORE DEL can now remove indices

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2003-2004 E. Will et al.
3     * Rights to this code are documented in doc/LICENSE.
4     *
5     * Includes most headers usually needed.
6     *
7     * $Id: atheme.h 8375 2007-06-03 20:03:26Z pippijn $
8     */
9    
10     #ifndef ATHEME_H
11     #define ATHEME_H
12    
13     #define E extern
14     #define DLE
15    
16     #include "sysconf.h"
17     #include "stdinc.h"
18     #include "svsconfig.h"
19     #include "i18n.h"
20     #include "forwards.h"
21     #include "common.h"
22     #include "dlink.h"
23     #include "object.h"
24     #include "event.h"
25     #include "balloc.h"
26     #include "connection.h"
27     #include "hook.h"
28     #include "linker.h"
29     #include "atheme_string.h"
30     #include "atheme_memory.h"
31     #include "dictionary.h"
32     #include "table.h"
33     #include "servers.h"
34     #include "channels.h"
35     #include "module.h"
36     #include "crypto.h"
37     #include "md5.h"
38     #include "sasl.h"
39     #include "match.h"
40     #include "sysconf.h"
41     #include "account.h"
42     #include "tools.h"
43     #include "confparse.h"
44     #include "global.h"
45     #include "flags.h"
46     #include "phandler.h"
47     #include "servtree.h"
48     #include "services.h"
49     #include "commandtree.h"
50     #include "users.h"
51     #include "sourceinfo.h"
52     #include "symbolmatrix.h"
53    
54     #endif /* ATHEME_H */