Annotation of embedaddon/strongswan/src/libcharon/plugins/xauth_noauth/xauth_noauth_plugin.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2013 Tobias Brunner
                      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 "xauth_noauth_plugin.h"
                     17: #include "xauth_noauth.h"
                     18: 
                     19: #include <daemon.h>
                     20: 
                     21: METHOD(plugin_t, get_name, char*,
                     22:        xauth_noauth_plugin_t *this)
                     23: {
                     24:        return "xauth-noauth";
                     25: }
                     26: 
                     27: METHOD(plugin_t, get_features, int,
                     28:        xauth_noauth_plugin_t *this, plugin_feature_t *features[])
                     29: {
                     30:        static plugin_feature_t f[] = {
                     31:                PLUGIN_CALLBACK(xauth_method_register, xauth_noauth_create_server),
                     32:                        PLUGIN_PROVIDE(XAUTH_SERVER, "noauth"),
                     33:        };
                     34:        *features = f;
                     35:        return countof(f);
                     36: }
                     37: 
                     38: METHOD(plugin_t, destroy, void,
                     39:        xauth_noauth_plugin_t *this)
                     40: {
                     41:        free(this);
                     42: }
                     43: 
                     44: /*
                     45:  * see header file
                     46:  */
                     47: plugin_t *xauth_noauth_plugin_create()
                     48: {
                     49:        xauth_noauth_plugin_t *this;
                     50: 
                     51:        INIT(this,
                     52:                .plugin = {
                     53:                        .get_name = _get_name,
                     54:                        .get_features = _get_features,
                     55:                        .destroy = _destroy,
                     56:                },
                     57:        );
                     58: 
                     59:        return &this->plugin;
                     60: }

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