aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-10-05 21:15:24 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-10-05 21:15:24 +0200
commit6d0e9cf046fe736dafb582d08b5c6d74fd61f264 (patch)
treed7a97b40df158486c41acc555a49e6b68dc822c2 /src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h
parenta1edf4d33e0d00f76abb52812f78399554b05962 (diff)
downloadstrongswan-6d0e9cf046fe736dafb582d08b5c6d74fd61f264.tar.bz2
strongswan-6d0e9cf046fe736dafb582d08b5c6d74fd61f264.tar.xz
created hull for TNCCS 2.0 plugin
Diffstat (limited to 'src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h')
-rw-r--r--src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h b/src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h
new file mode 100644
index 000000000..1c4ecf4c9
--- /dev/null
+++ b/src/libcharon/plugins/tnccs_20/tnccs_20_plugin.h
@@ -0,0 +1,42 @@
+/*
+ * Copyright (C) 2010 Andreas Steffen
+ * HSR 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 tnccs_20 tnccs_20
+ * @ingroup cplugins
+ *
+ * @defgroup tnccs_20_plugin tnccs_20_plugin
+ * @{ @ingroup tnccs_20
+ */
+
+#ifndef TNCCS_20_PLUGIN_H_
+#define TNCCS_20_PLUGIN_H_
+
+#include <plugins/plugin.h>
+
+typedef struct tnccs_20_plugin_t tnccs_20_plugin_t;
+
+/**
+ * EAP-TNC plugin
+ */
+struct tnccs_20_plugin_t {
+
+ /**
+ * implements plugin interface
+ */
+ plugin_t plugin;
+};
+
+#endif /** TNCCS_20_PLUGIN_H_ @}*/