Annotation of embedaddon/strongswan/src/libstrongswan/plugins/winhttp/winhttp_plugin.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2014 Martin Willi
                      3:  * Copyright (C) 2014 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: #include "winhttp_plugin.h"
                     17: #include "winhttp_fetcher.h"
                     18: 
                     19: typedef struct private_winhttp_plugin_t private_winhttp_plugin_t;
                     20: 
                     21: /**
                     22:  * Private data of winhttp_plugin
                     23:  */
                     24: struct private_winhttp_plugin_t {
                     25: 
                     26:        /**
                     27:         * Public functions
                     28:         */
                     29:        winhttp_plugin_t public;
                     30: };
                     31: 
                     32: METHOD(plugin_t, get_name, char*,
                     33:        private_winhttp_plugin_t *this)
                     34: {
                     35:        return "winhttp";
                     36: }
                     37: 
                     38: METHOD(plugin_t, get_features, int,
                     39:        private_winhttp_plugin_t *this, plugin_feature_t *features[])
                     40: {
                     41:        static plugin_feature_t f[] = {
                     42:                PLUGIN_REGISTER(FETCHER, winhttp_fetcher_create),
                     43:                        PLUGIN_PROVIDE(FETCHER, "http://"),
                     44:                        PLUGIN_PROVIDE(FETCHER, "https://"),
                     45:        };
                     46:        *features = f;
                     47:        return countof(f);
                     48: }
                     49: 
                     50: METHOD(plugin_t, destroy, void,
                     51:        private_winhttp_plugin_t *this)
                     52: {
                     53:        free(this);
                     54: }
                     55: 
                     56: /*
                     57:  * see header file
                     58:  */
                     59: plugin_t *winhttp_plugin_create()
                     60: {
                     61:        private_winhttp_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>