File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / src / libtnccs / plugins / tnc_imv / tnc_imv_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) 2010-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 "tnc_imv_plugin.h"
   17: #include "tnc_imv_manager.h"
   18: 
   19: #include <tnc/tnc.h>
   20: 
   21: 
   22: typedef struct private_tnc_imv_plugin_t private_tnc_imv_plugin_t;
   23: 
   24: /**
   25:  * Private data of a tnc_imv_plugin_t object.
   26:  */
   27: struct private_tnc_imv_plugin_t {
   28: 
   29: 	/**
   30: 	 * Public interface.
   31: 	 */
   32: 	tnc_imv_plugin_t public;
   33: 
   34: };
   35: 
   36: 
   37: METHOD(plugin_t, get_name, char*,
   38: 	tnc_imv_plugin_t *this)
   39: {
   40: 	return "tnc-imv";
   41: }
   42: 
   43: METHOD(plugin_t, get_features, int,
   44: 	private_tnc_imv_plugin_t *this, plugin_feature_t *features[])
   45: {
   46: 	static plugin_feature_t f[] = {
   47: 		PLUGIN_CALLBACK(tnc_manager_register, tnc_imv_manager_create),
   48: 			PLUGIN_PROVIDE(CUSTOM, "imv-manager"),
   49: 				PLUGIN_DEPENDS(CUSTOM, "tnccs-manager"),
   50: 				PLUGIN_SDEPEND(CERT_DECODE, CERT_X509),
   51: 				PLUGIN_SDEPEND(CERT_DECODE, CERT_TRUSTED_PUBKEY),
   52: 				PLUGIN_SDEPEND(DATABASE, DB_ANY),
   53: 	};
   54: 	*features = f;
   55: 	return countof(f);
   56: }
   57: 
   58: METHOD(plugin_t, destroy, void,
   59: 	private_tnc_imv_plugin_t *this)
   60: {
   61: 	free(this);
   62: }
   63: 
   64: /*
   65:  * see header file
   66:  */
   67: plugin_t *tnc_imv_plugin_create()
   68: {
   69: 	private_tnc_imv_plugin_t *this;
   70: 
   71: 	INIT(this,
   72: 		.public = {
   73: 			.plugin = {
   74: 				.get_name = _get_name,
   75: 				.get_features = _get_features,
   76: 				.destroy = _destroy,
   77: 			},
   78: 		},
   79: 	);
   80: 
   81: 	return &this->public.plugin;
   82: }
   83: 

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