00001 00002 /* 00003 * The olsr.org Optimized Link-State Routing daemon(olsrd) 00004 * Copyright (c) 2004-2009, the olsr.org team - see HISTORY file 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * * Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * * Redistributions in binary form must reproduce the above copyright 00014 * notice, this list of conditions and the following disclaimer in 00015 * the documentation and/or other materials provided with the 00016 * distribution. 00017 * * Neither the name of olsr.org, olsrd nor the names of its 00018 * contributors may be used to endorse or promote products derived 00019 * from this software without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 * POSSIBILITY OF SUCH DAMAGE. 00033 * 00034 * Visit http://www.olsr.org for more information. 00035 * 00036 * If you find this software useful feel free to make a donation 00037 * to the project. For more information see the website or contact 00038 * the copyright holders. 00039 * 00040 */ 00041 00042 00043 /* 00044 * Example plugin for olsrd.org OLSR daemon 00045 * Only the bare minimum 00046 */ 00047 00048 00049 #include "olsrd_plugin.h" 00050 #include "olsr.h" 00051 #include "defs.h" 00052 #include "plugin.h" 00053 #include "olsr_logging.h" 00054 00055 #include <stdio.h> 00056 #include <string.h> 00057 00058 #define PLUGIN_INTERFACE_VERSION 5 00059 00060 00061 /**************************************************************************** 00062 * Functions that the plugin MUST provide * 00063 ****************************************************************************/ 00064 00069 int 00070 olsrd_plugin_interface_version(void) 00071 { 00072 return PLUGIN_INTERFACE_VERSION; 00073 } 00074 00075 00076 static int 00077 set_plugin_test(const char *value __attribute__ ((unused)), void *data __attribute__ ((unused)), set_plugin_parameter_addon addon 00078 __attribute__ ((unused))) 00079 { 00080 OLSR_INFO(LOG_PLUGINS, "\n*** MINI: parameter test: %s\n", value); 00081 return 0; 00082 } 00083 00088 static const struct olsrd_plugin_parameters plugin_parameters[] = { 00089 {.name = "test",.set_plugin_parameter = &set_plugin_test,.data = NULL}, 00090 }; 00091 00092 void 00093 olsrd_get_plugin_parameters(const struct olsrd_plugin_parameters **params, int *size) 00094 { 00095 *params = plugin_parameters; 00096 *size = ARRAYSIZE(plugin_parameters); 00097 } 00098 00099 00104 int 00105 olsrd_plugin_init(void) 00106 { 00107 OLSR_INFO(LOG_PLUGINS, "*** MINI: plugin_init\n"); 00108 00109 return 1; 00110 } 00111 00112 00113 /**************************************************************************** 00114 * Optional private constructor and destructor functions * 00115 ****************************************************************************/ 00116 00117 /* attention: make static to avoid name clashes */ 00118 00119 static void my_init(void) __attribute__ ((constructor)); 00120 static void my_fini(void) __attribute__ ((destructor)); 00121 00122 00126 static void 00127 my_init(void) 00128 { 00129 // MINI: constructor 00130 } 00131 00132 00136 static void 00137 my_fini(void) 00138 { 00139 // MINI: destructor 00140 } 00141 00142 /* 00143 * Local Variables: 00144 * c-basic-offset: 2 00145 * indent-tabs-mode: nil 00146 * End: 00147 */
1.6.3