2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 #include <dispatcher.h>
24 #include "controller/auth_controller.h"
25 #include "controller/ikesa_controller.h"
26 #include "controller/gateway_controller.h"
27 #include "controller/control_controller.h"
28 #include "controller/config_controller.h"
30 int main (int arc
, char *argv
[])
32 dispatcher_t
*dispatcher
;
39 library_init(STRONGSWAN_CONF
);
40 lib
->plugins
->load(lib
->plugins
, IPSEC_PLUGINDIR
,
41 lib
->settings
->get_str(lib
->settings
, "manager.load", PLUGINS
));
43 socket
= lib
->settings
->get_str(lib
->settings
, "manager.socket", NULL
);
44 debug
= lib
->settings
->get_bool(lib
->settings
, "manager.debug", FALSE
);
45 timeout
= lib
->settings
->get_time(lib
->settings
, "manager.timeout", 900);
46 threads
= lib
->settings
->get_int(lib
->settings
, "manager.threads", 10);
47 database
= lib
->settings
->get_str(lib
->settings
, "manager.database", NULL
);
50 DBG1("database URI undefined, set manager.database in strongswan.conf");
54 storage
= storage_create(database
);
60 dispatcher
= dispatcher_create(socket
, debug
, timeout
,
61 (context_constructor_t
)manager_create
, storage
);
62 dispatcher
->add_controller(dispatcher
, ikesa_controller_create
, NULL
);
63 dispatcher
->add_controller(dispatcher
, gateway_controller_create
, NULL
);
64 dispatcher
->add_controller(dispatcher
, auth_controller_create
, NULL
);
65 dispatcher
->add_controller(dispatcher
, control_controller_create
, NULL
);
66 dispatcher
->add_controller(dispatcher
, config_controller_create
, NULL
);
68 dispatcher
->run(dispatcher
, threads
);
70 dispatcher
->waitsignal(dispatcher
);
72 dispatcher
->destroy(dispatcher
);
73 storage
->destroy(storage
);