⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flood.c

📁 MANTIS是由科罗拉多大学开发的传感器网络嵌入式操作系统。 这是mantis的0.9.5版本的源码。
💻 C
字号:
//  This file is part of MANTIS OS, Operating System//  See http://mantis.cs.colorado.edu/////  Copyright (C) 2003,2004,2005 University of Colorado, Boulder////  This program is free software; you can redistribute it and/or//  modify it under the terms of the mos license (see file LICENSE)/**************************************************************************//* File:      flood.c                                                     *//* Author     Jeff Rose   :  rosejn@colorado.edu                          *//*   Date: 04/15/04                                                       *//*                                                                        *//* A broadcast flooding implementation for the mos net layer.             *//**************************************************************************/#include "flood.h"#include "node_id.h"#define FLOOD_BROADCAST_ADDR 0xffff	// Broadcast address#define FLOOD_HISTORY_SIZE   10	// Packet cache size for floodingtypedef struct cache_entry_t {   struct cache_entry_t *next;   uint16_t src;   uint8_t seq_num;} cache_entry;cache_entry pkt_cache_mem[FLOOD_HISTORY_SIZE];cache_entry *pkt_cache;int8_t cache_check(flood_pkt * pkt);void flood_init(){   uint8_t i;   cache_entry *cache_ptr;      // Setup the packet cache   pkt_cache_mem[0].src = 0;   pkt_cache_mem[0].seq_num = 0;   pkt_cache = &pkt_cache_mem[0];   cache_ptr = pkt_cache;      for (i = 1; i < FLOOD_HISTORY_SIZE; i++) {       pkt_cache_mem[i].src = 0;      pkt_cache_mem[i].seq_num = 0;      cache_ptr->next = &pkt_cache_mem[i];  }   net_proto_register(FLOOD_PROTO_ID, flood_send, flood_recv, flood_ioctl);}int8_t flood_send(comBuf * pkt, va_list args){   flood_pkt *flood_ptr;   // First make sure the packet isn't too large   if (pkt->size > (COM_DATA_SIZE - sizeof(flood_pkt)))      return NET_BUF_FULL;   // Fill in the flood packet info for the broadcast addr &   //  specified port   flood_ptr = (flood_pkt*)&(pkt->data[pkt->size]);   flood_ptr->src = mos_node_id_get();   flood_ptr->dest = FLOOD_BROADCAST_ADDR;   pkt->size += sizeof(flood_pkt);   pkt->data[pkt->size++] = FLOOD_PROTO_ID;      // Save it in our packet cache so we don't send it again   cache_check(flood_ptr);      com_send(IFACE_RADIO, pkt);   return pkt->size;}boolean flood_recv(comBuf *pkt, uint8_t **footer, uint8_t port){   flood_pkt *flp;   flp = (flood_pkt*)&(pkt->data[pkt->size - sizeof(flood_pkt)]);   *footer = (uint8_t *)flp;   // We can just dump the packet if we already have it cached   if(cache_check(flp))      return true;   // Forward it on if its a broadcast or its not for us   if(flp->dest == FLOOD_BROADCAST_ADDR || flp->dest != mos_node_id_get())      com_send(IFACE_RADIO, pkt);   // Pull our header off   pkt->size -= sizeof(flood_pkt);   // Now tell the net layer whether this is an event packet or not   if(flp->dest == FLOOD_BROADCAST_ADDR || flp->dest == mos_node_id_get())      return true;   return false;}int8_t flood_ioctl(uint8_t request, va_list args){  /*  int arg; */   /*    switch(request) *//*    { *//*    case DUMMY_CONTROL: // Adjust transmit power */      /*       /\* First get the argument and then call the specific function. *\/ *//*       arg = va_arg(ap, int); *//*       dummy_func(arg); *//*       break; *//*    } */      return 0;}/** Functions private to this file. **//** @brief Check the cache for the given packet, and cache it if we haven't * already seen it.  * @param pkt Packet  * @return FALSE if this is an old or non-existent packet, else return TRUE*/int8_t cache_check(flood_pkt * pkt){   cache_entry *cache_ptr, *last = NULL;   // Run through the cache to determine if we have already seen this packet   for(cache_ptr = pkt_cache; cache_ptr->next != NULL;       cache_ptr = cache_ptr->next) {      if(cache_ptr->src == pkt->src) {	 // This is a duplicate	 if (cache_ptr->seq_num == pkt->seq_num)	    return TRUE;	 else if (cache_ptr->seq_num < pkt->seq_num){	    // This is an old packet	    cache_ptr->seq_num = pkt->seq_num;	    return FALSE;	 }      }      last = cache_ptr;   }   // If we get here than the cache doesn't have any packets from   // this address.  Copy the pkt data into the tail of the list and   // move it up to the front      cache_ptr->src = pkt->src;   cache_ptr->seq_num = pkt->seq_num;   last->next = NULL;   cache_ptr->next = pkt_cache;   pkt_cache = cache_ptr;   return FALSE;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -