File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / src / libtnccs / plugins / tnccs_dynamic / tnccs_dynamic_plugin.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 3 09:46:43 2020 UTC (4 years, 3 months ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, v5_8_4p7, HEAD
Strongswan

    1: /*
    2:  * Copyright (C) 2011 Andreas Steffen
    3:  * HSR 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: 
   16: #include "tnccs_dynamic_plugin.h"
   17: #include "tnccs_dynamic.h"
   18: 
   19: #include <tnc/tnccs/tnccs_manager.h>
   20: 
   21: METHOD(plugin_t, get_name, char*,
   22: 	tnccs_dynamic_plugin_t *this)
   23: {
   24: 	return "tnccs-dynamic";
   25: }
   26: 
   27: METHOD(plugin_t, get_features, int,
   28: 	tnccs_dynamic_plugin_t *this, plugin_feature_t *features[])
   29: {
   30: 	static plugin_feature_t f[] = {
   31: 		PLUGIN_CALLBACK(tnccs_method_register, tnccs_dynamic_create),
   32: 			PLUGIN_PROVIDE(CUSTOM, "tnccs-dynamic"),
   33: 				PLUGIN_DEPENDS(CUSTOM, "tnccs-1.1"),
   34: 				PLUGIN_DEPENDS(CUSTOM, "tnccs-2.0"),
   35: 	};
   36: 	*features = f;
   37: 	return countof(f);
   38: }
   39: 
   40: METHOD(plugin_t, destroy, void,
   41: 	tnccs_dynamic_plugin_t *this)
   42: {
   43: 	free(this);
   44: }
   45: 
   46: /*
   47:  * see header file
   48:  */
   49: plugin_t *tnccs_dynamic_plugin_create()
   50: {
   51: 	tnccs_dynamic_plugin_t *this;
   52: 
   53: 	INIT(this,
   54: 		.plugin = {
   55: 			.get_name = _get_name,
   56: 			.get_features = _get_features,
   57: 			.destroy = _destroy,
   58: 		},
   59: 	);
   60: 
   61: 	return &this->plugin;
   62: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>