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
16 #include <dispatcher.h>
22 #include "controller/auth_controller.h"
23 #include "controller/ikesa_controller.h"
24 #include "controller/gateway_controller.h"
25 #include "controller/control_controller.h"
26 #include "controller/config_controller.h"
28 int main (int arc
, char *argv
[])
30 dispatcher_t
*dispatcher
;
37 library_init(STRONGSWAN_CONF
);
38 if (!lib
->plugins
->load(lib
->plugins
, NULL
,
39 lib
->settings
->get_str(lib
->settings
, "manager.load", PLUGINS
)))
44 socket
= lib
->settings
->get_str(lib
->settings
, "manager.socket", NULL
);
45 debug
= lib
->settings
->get_bool(lib
->settings
, "manager.debug", FALSE
);
46 timeout
= lib
->settings
->get_time(lib
->settings
, "manager.timeout", 900);
47 threads
= lib
->settings
->get_int(lib
->settings
, "manager.threads", 10);
48 database
= lib
->settings
->get_str(lib
->settings
, "manager.database", NULL
);
51 DBG1("database URI undefined, set manager.database in strongswan.conf");
55 storage
= storage_create(database
);
61 dispatcher
= dispatcher_create(socket
, debug
, timeout
,
62 (context_constructor_t
)manager_create
, storage
);
63 dispatcher
->add_controller(dispatcher
, ikesa_controller_create
, NULL
);
64 dispatcher
->add_controller(dispatcher
, gateway_controller_create
, NULL
);
65 dispatcher
->add_controller(dispatcher
, auth_controller_create
, NULL
);
66 dispatcher
->add_controller(dispatcher
, control_controller_create
, NULL
);
67 dispatcher
->add_controller(dispatcher
, config_controller_create
, NULL
);
69 dispatcher
->run(dispatcher
, threads
);
71 dispatcher
->waitsignal(dispatcher
);
73 dispatcher
->destroy(dispatcher
);
74 storage
->destroy(storage
);