Annotation of embedaddon/strongswan/src/libcharon/plugins/kernel_pfroute/kernel_pfroute_plugin.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2009 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: 
                     17: #include "kernel_pfroute_plugin.h"
                     18: 
                     19: #include "kernel_pfroute_net.h"
                     20: 
                     21: typedef struct private_kernel_pfroute_plugin_t private_kernel_pfroute_plugin_t;
                     22: 
                     23: /**
                     24:  * private data of kernel PF_ROUTE plugin
                     25:  */
                     26: struct private_kernel_pfroute_plugin_t {
                     27:        /**
                     28:         * implements plugin interface
                     29:         */
                     30:        kernel_pfroute_plugin_t public;
                     31: };
                     32: 
                     33: METHOD(plugin_t, get_name, char*,
                     34:        private_kernel_pfroute_plugin_t *this)
                     35: {
                     36:        return "kernel-pfroute";
                     37: }
                     38: 
                     39: METHOD(plugin_t, get_features, int,
                     40:        private_kernel_pfroute_plugin_t *this, plugin_feature_t *features[])
                     41: {
                     42:        static plugin_feature_t f[] = {
                     43:                PLUGIN_CALLBACK(kernel_net_register, kernel_pfroute_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_pfroute_plugin_t *this)
                     52: {
                     53:        free(this);
                     54: }
                     55: 
                     56: /*
                     57:  * see header file
                     58:  */
                     59: plugin_t *kernel_pfroute_plugin_create()
                     60: {
                     61:        private_kernel_pfroute_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>