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 #ifndef LQ_PLUGIN_ETX_FLOAT_H_ 00043 #define LQ_PLUGIN_ETX_FLOAT_H_ 00044 00045 #include "olsr_types.h" 00046 #include "lq_plugin.h" 00047 #include "plugin.h" 00048 00049 #define LQ_ALGORITHM_ETX_FLOAT_NAME "etx_float" 00050 00051 struct lq_etxfloat_linkquality { 00052 float valueLq; 00053 float valueNlq; 00054 }; 00055 00056 struct lq_etxfloat_tc_edge { 00057 struct tc_entry core; 00058 struct lq_etxfloat_linkquality lq; 00059 }; 00060 00061 struct lq_etxfloat_lq_hello_neighbor { 00062 struct lq_hello_neighbor core; 00063 struct lq_etxfloat_linkquality lq; 00064 }; 00065 00066 struct lq_etxfloat_link_entry { 00067 struct link_entry core; 00068 struct lq_etxfloat_linkquality lq; 00069 uint16_t quickstart; 00070 }; 00071 #endif /*LQ_PLUGIN_ETX_FLOAT_H_ */ 00072 00073 /* 00074 * Local Variables: 00075 * c-basic-offset: 2 00076 * indent-tabs-mode: nil 00077 * End: 00078 */
1.6.3