diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-03-31 13:55:12 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-04-06 12:47:40 +0200 |
commit | a5ec3025473b243f57b689b95ca28420510e8845 (patch) | |
tree | 7f8cbbc3ed66bf3361f29c49ac801e15e8a1c482 /src/libhydra/plugins/attr/attr_plugin.h | |
parent | facf887253b807e0d7c666b95f664363f1c4b676 (diff) | |
download | strongswan-a5ec3025473b243f57b689b95ca28420510e8845.tar.bz2 strongswan-a5ec3025473b243f57b689b95ca28420510e8845.tar.xz |
Moved attr plugin from libcharon to libhydra.
Diffstat (limited to 'src/libhydra/plugins/attr/attr_plugin.h')
-rw-r--r-- | src/libhydra/plugins/attr/attr_plugin.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/libhydra/plugins/attr/attr_plugin.h b/src/libhydra/plugins/attr/attr_plugin.h new file mode 100644 index 000000000..29fb33839 --- /dev/null +++ b/src/libhydra/plugins/attr/attr_plugin.h @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2009 Martin Willi + * Hochschule fuer Technik Rapperswil + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ + +/** + * @defgroup attr attr + * @ingroup hplugins + * + * @defgroup attr_plugin attr_plugin + * @{ @ingroup attr + */ + +#ifndef ATTR_PLUGIN_H_ +#define ATTR_PLUGIN_H_ + +#include <plugins/plugin.h> + +typedef struct attr_plugin_t attr_plugin_t; + +/** + * Plugin providing configuration attribute through strongswan.conf. + */ +struct attr_plugin_t { + + /** + * implements plugin interface + */ + plugin_t plugin; +}; + +#endif /** ATTR_PLUGIN_H_ @}*/ |