Added initial Configuration Class
[fmail.git] / include / libfmail.h
blobc7173f0486196a7df5515c9609ef19d2a2a127a4
1 /*
2 libfmail: Basic Clases and Objects
4 Copyright (C) 2007 Carlos Daniel Ruvalcaba Valenzuela <clsdaniel@gmail.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <malloc.h>
25 #include <sys/types.h>
26 #include <sys/uio.h>
27 #include <unistd.h>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
30 #include <sys/time.h>
31 #include <sys/ioctl.h>
33 #include <string>
34 #include <map>
35 #include <queue>
37 #include <libfmail/configuration.h>
38 #include <libfmail/searchtree.h>
39 #include <libfmail/socket.h>
40 #include <libfmail/thread.h>
41 #include <libfmail/lock.h>
42 #include <libfmail/semaphore.h>
44 #include <libfmail/ipcmsg.h>
45 #include <libfmail/ipc.h>
47 #include <libfmail/authman.h>
48 #include <libfmail/protocol.h>
49 #include <libfmail/loadhandler.h>
50 #include <libfmail/baseserver.h>
51 #include <libfmail/threadpool.h>