2 * Copyright (C) 2012 Martin Willi
3 * Copyright (C) 2012 revosec AG
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 "error_notify_plugin.h"
18 #include "error_notify_listener.h"
19 #include "error_notify_socket.h"
23 typedef struct private_error_notify_plugin_t private_error_notify_plugin_t
;
26 * private data of error_notify plugin
28 struct private_error_notify_plugin_t
{
31 * Implements plugin interface
33 error_notify_plugin_t
public;
36 * Listener catching error alerts
38 error_notify_listener_t
*listener
;
41 * Socket sending notifications
43 error_notify_socket_t
*socket
;
46 METHOD(plugin_t
, get_name
, char*,
47 private_error_notify_plugin_t
*this)
49 return "error-notify";
52 METHOD(plugin_t
, destroy
, void,
53 private_error_notify_plugin_t
*this)
55 charon
->bus
->remove_listener(charon
->bus
, &this->listener
->listener
);
56 this->listener
->destroy(this->listener
);
57 this->socket
->destroy(this->socket
);
64 plugin_t
*error_notify_plugin_create()
66 private_error_notify_plugin_t
*this;
71 .get_name
= _get_name
,
72 .reload
= (void*)return_false
,
76 .socket
= error_notify_socket_create(),
79 this->listener
= error_notify_listener_create(this->socket
);
80 charon
->bus
->add_listener(charon
->bus
, &this->listener
->listener
);
82 return &this->public.plugin
;