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