strongswan/src/libcharon/plugins/nm/nm_plugin.h

43 lines
1006 B
C
Raw Normal View History

2007-09-11 15:22:02 +00:00
/*
* Copyright (C) 2008 Martin Willi
2007-09-11 15:22:02 +00:00
* 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 nm nm
* @ingroup cplugins
*
* @defgroup nm_plugin nm_plugin
* @{ @ingroup nm
2007-09-11 15:22:02 +00:00
*/
#ifndef NM_PLUGIN_H_
#define NM_PLUGIN_H_
#include <plugins/plugin.h>
typedef struct nm_plugin_t nm_plugin_t;
2007-09-11 15:22:02 +00:00
/**
* NetworkManager integration plugin.
2007-09-11 15:22:02 +00:00
*/
struct nm_plugin_t {
2007-09-11 15:22:02 +00:00
/**
* implements plugin interface
2007-09-11 15:22:02 +00:00
*/
plugin_t plugin;
2007-09-11 15:22:02 +00:00
};
#endif /** NM_PLUGIN_H_ @}*/