From: gnawali Date: Wed, 5 Dec 2007 22:28:35 +0000 (+0000) Subject: moving CompareBit.nc to ctp directory X-Git-Tag: release_tinyos_2_1_0_0~644 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=601c7526e1423f50f882133cffb07a4909d9c2f4 moving CompareBit.nc to ctp directory --- diff --git a/tos/lib/net/4bitle/CompareBit.nc b/tos/lib/net/4bitle/CompareBit.nc deleted file mode 100644 index baf62206..00000000 --- a/tos/lib/net/4bitle/CompareBit.nc +++ /dev/null @@ -1,42 +0,0 @@ -/* $Id$ */ -/* - * "Copyright (c) 2006 University of Southern California. - * All rights reserved. - * - * Permission to use, copy, modify, and distribute this software and its - * documentation for any purpose, without fee, and without written - * agreement is hereby granted, provided that the above copyright - * notice, the following two paragraphs and the author appear in all - * copies of this software. - * - * IN NO EVENT SHALL THE UNIVERSITY OF SOUTHERN CALIFORNIA BE LIABLE TO - * ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL - * DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS - * DOCUMENTATION, EVEN IF THE UNIVERSITY OF SOUTHERN CALIFORNIA HAS BEEN - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * THE UNIVERSITY OF SOUTHERN CALIFORNIA SPECIFICALLY DISCLAIMS ANY - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE - * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF - * SOUTHERN CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, - * SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." - * - */ - -/** Link estimator asks the routing engine if this entry - * should be inserted into the neighbor table given the - * white bit. The return value is the "pin bit" - if true - * insert into the neighbor table. In the reference implementation - * the router will return true if the path through the source - * will be better than a path through at least one current neighbor. - @ author Omprakash Gnawali - @ Created: September 16, 2006 - @date $Date$ - */ - -interface CompareBit { - - /* should the source of this message be inserted into the neighbor table? */ - event bool shouldInsert(message_t *msg, void* payload, uint8_t len, bool white_bit); -}