]> git.ipfire.org Git - thirdparty/strongswan.git/blame_incremental - src/charon/plugins/medsrv/medsrv_plugin.h
updated Doxyfile
[thirdparty/strongswan.git] / src / charon / plugins / medsrv / medsrv_plugin.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
4 *
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>.
9 *
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
13 * for more details.
14 *
15 * $Id$
16 */
17
18/**
19 * @defgroup medsrv medsrv
20 * @ingroup cplugins
21 *
22 * @defgroup medsrv_plugin medsrv_plugin
23 * @{ @ingroup medsrv
24 */
25
26#ifndef MEDSRV_PLUGIN_H_
27#define MEDSRV_PLUGIN_H_
28
29#include <plugins/plugin.h>
30
31typedef struct medsrv_plugin_t medsrv_plugin_t;
32
33/**
34 * Mediation server database plugin.
35 */
36struct medsrv_plugin_t {
37
38 /**
39 * implements plugin interface
40 */
41 plugin_t plugin;
42};
43
44/**
45 * Create a medsrv_plugin instance.
46 */
47plugin_t *plugin_create();
48
49#endif /** MEDSRV_PLUGIN_H_ @}*/