Annotation of embedaddon/strongswan/src/libcharon/plugins/kernel_iph/kernel_iph_plugin.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2013 Martin Willi
                      3:  * Copyright (C) 2013 revosec AG
                      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: 
                     17: #include "kernel_iph_plugin.h"
                     18: #include "kernel_iph_net.h"
                     19: 
                     20: typedef struct private_kernel_iph_plugin_t private_kernel_iph_plugin_t;
                     21: 
                     22: /**
                     23:  * Private data of kernel iph plugin
                     24:  */
                     25: struct private_kernel_iph_plugin_t {
                     26: 
                     27:        /**
                     28:         * Implements plugin interface
                     29:         */
                     30:        kernel_iph_plugin_t public;
                     31: };
                     32: 
                     33: METHOD(plugin_t, get_name, char*,
                     34:        private_kernel_iph_plugin_t *this)
                     35: {
                     36:        return "kernel-iph";
                     37: }
                     38: 
                     39: METHOD(plugin_t, get_features, int,
                     40:        private_kernel_iph_plugin_t *this, plugin_feature_t *features[])
                     41: {
                     42:        static plugin_feature_t f[] = {
                     43:                PLUGIN_CALLBACK(kernel_net_register, kernel_iph_net_create),
                     44:                        PLUGIN_PROVIDE(CUSTOM, "kernel-net"),
                     45:        };
                     46:        *features = f;
                     47:        return countof(f);
                     48: }
                     49: 
                     50: METHOD(plugin_t, destroy, void,
                     51:        private_kernel_iph_plugin_t *this)
                     52: {
                     53:        free(this);
                     54: }
                     55: 
                     56: /*
                     57:  * See header file
                     58:  */
                     59: plugin_t *kernel_iph_plugin_create()
                     60: {
                     61:        private_kernel_iph_plugin_t *this;
                     62: 
                     63:        INIT(this,
                     64:                .public = {
                     65:                        .plugin = {
                     66:                                .get_name = _get_name,
                     67:                                .get_features = _get_features,
                     68:                                .destroy = _destroy,
                     69:                        },
                     70:                },
                     71:        );
                     72: 
                     73:        return &this->public.plugin;
                     74: }

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