亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? path.cc

?? 動態路由協議dsr改進算法
?? CC
字號:
/* * path.cc * Copyright (C) 2000 by the University of Southern California * $Id: path.cc,v 1.7 2005/08/25 18:58:05 johnh Exp $ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * * The copyright of this module includes the following * linking-with-specific-other-licenses addition: * * In addition, as a special exception, the copyright holders of * this module give you permission to combine (via static or * dynamic linking) this module with free software programs or * libraries that are released under the GNU LGPL and with code * included in the standard release of ns-2 under the Apache 2.0 * license or under otherwise-compatible licenses with advertising * requirements (or modified versions of such code, with unchanged * license).  You may copy and distribute such a system following the * terms of the GNU GPL for this module and the licenses of the * other code concerned, provided that you include the source code of * that other code when and as the GNU GPL requires distribution of * source code. * * Note that people who make modified versions of this module * are not obligated to grant this special exception for their * modified versions; it is their choice whether to do so.  The GNU * General Public License gives permission to release a modified * version without this exception; this exception also makes it * possible to release a modified version which carries forward this * exception. * *///// Other copyrights might apply to parts of this software and are so// noted when applicable.//// Ported from CMU/Monarch's code, appropriate copyright applies.  /* path.cc   handles source routes*/extern "C" {#include <assert.h>#include <stdio.h>}#include <packet.h>#include <ip.h>#include "hdr_sr.h"#include "path.h"/*===========================================================================  global statics---------------------------------------------------------------------------*/ID invalid_addr(0xffffffff,::NONE);ID IP_broadcast(IP_BROADCAST,::IP);/*===========================================================================  ID methods---------------------------------------------------------------------------*/voidID::unparse(FILE *out) const{  fprintf(out,"%d",(int) addr);}char *ID::dump() const{  static char buf[MAX_SR_LEN+1][50];  static int which = 0;  char *ptr = buf[which];  which = (which + 1) % (MAX_SR_LEN+1);  assert(type == ::NONE || type == ::MAC || type == ::IP);  if (type == ::IP)    sprintf(ptr,"%d",(int) addr);  else if (type == ::NONE)    sprintf(ptr,"NONE");  else    sprintf(ptr,"0x%x",(int) addr);  return ptr;}/*===========================================================================  Path methods---------------------------------------------------------------------------*//* rep invariants:   -1 <= cur_index <= len  (neither bound is really hard)   0 <= len < MAX_SR_LEN*/Path::Path(int route_len, const ID *route){  path = new ID[MAX_SR_LEN];  assert(route_len <= MAX_SR_LEN);  //  route_len = (route == NULL : 0 ? route_len);   // a more cute solution, follow the above with the then clause  if (route != NULL)    {      for (int c = 0; c < route_len; c++)        {	  path[c] = route[c];        }      len = route_len;    }  else    {      len = 0;    }  cur_index = 0;}Path::Path(){  path = new ID[MAX_SR_LEN];  len = 0;  cur_index = 0;}Path::Path(const struct sr_addr *addrs, int len){ /* make a path from the bits of an NS source route header */  assert(len <= MAX_SR_LEN);  path = new ID[MAX_SR_LEN];  for (int i = 0 ; i < len ; i++)    path[i] = ID(addrs[i]);  this->len = len;  cur_index = 0;}Path::Path(struct hdr_sr *srh){ /* make a path from the bits of an NS source route header */	path = new ID[MAX_SR_LEN];	if (! srh->valid()) {		len = 0;		cur_index = 0;		return;	}	len = srh->num_addrs();	cur_index = srh->cur_addr();	assert(len <= MAX_SR_LEN);		for (int i = 0 ; i < len ; i++)		path[i] = ID(srh->addrs()[i]);}voidPath::fillSR(struct hdr_sr *srh){  for (int i = 0 ; i < len ; i++)    {      path[i].fillSRAddr(srh->addrs()[i]);    }  srh->num_addrs() = len;  srh->cur_addr() = cur_index;}Path::Path(const Path& old){  path = new ID[MAX_SR_LEN];  if (old.path != NULL)    {      for (int c = 0; c < old.len; c++)	path[c] = old.path[c];      len = old.len;    }  else    {      len = 0;    }  cur_index = old.cur_index;  path_owner = old.path_owner;}Path::~Path(){  delete[] path;}voidPath::operator=(const Path &rhs)     // makes the lhs a copy of the rhs: lhs may share data with     // the rhs such that changes to one will be seen by the other     // use the provided copy operation if you don't want this.{/* OLD  NOTE:  we save copying the path by doing a delete[] path; path = rhs.path;   but then the following code will be fatal (it calls delete[]   twice on the same address)     { Path p1();       { Path p2();         p2 = p1;       }     }   you'd have to implement reference counts on the path array to   save copying the path.   NEW NOTE: we just copy like everything else*/  if (this != &rhs)    {// beware of path = path (see Stroustrup p. 238)      cur_index = rhs.cur_index;      path_owner = rhs.path_owner;      len = rhs.len;      for (int c = 0 ; c < len ; c++)	path[c] = rhs.path[c];    }  // note: i don't return *this cause I don't think assignments should  // be expressions (and it has slightly incorrect semantics: (a=b) should  // have the value of b, not the new value of a)}boolPath::operator==(const Path &rhs){  int c;  if (len != rhs.len) return false;  for (c = 0; c < len; c++)    if (path[c] != rhs.path[c]) return false;  return true;} void Path::appendPath(Path& p){  int i;  for (i = 0; i < p.length() ; i++)    {      path[len] = p[i];      len++;      if (len > MAX_SR_LEN)	{	  fprintf(stderr,"DFU: overflow in appendPath len2 %d\n",		  p.length());	  len--;	  return;	}    }}void Path::removeSection(int from, int to)  // the elements at indices from -> to-1 are removed from the path{  int i,j;  if (to <= from) return;  if (cur_index > from) cur_index = cur_index - (to - from);  for (i = to, j = 0; i < len ; i++, j++)    path[from + j] = path[i];  len = from + j;}PathPath::copy() const{  Path p(len,path);  p.cur_index = cur_index;  p.path_owner = path_owner;  return p;}voidPath::copyInto(Path& to) const{  to.cur_index = cur_index;  to.len = len;  for (int c = 0 ; c < len ; c++)    to.path[c] = path[c];    to.path_owner = path_owner;}PathPath::reverse() const     // return an identical path with the index pointing to the same     // host, but the path in reverse order{  if (len == 0) return *this;  Path p;  int from, to;  for (from = 0, to = (len-1) ; from < len ; from++,to--)    p.path[to] = path[from];  p.len = len;  p.cur_index = (len - 1) - cur_index;  return p;}voidPath::reverseInPlace(){  if (len == 0) return;  int fp,bp;	   // forward ptr, back ptr  ID temp;  for (fp = 0, bp = (len-1) ; fp < bp ; fp++, bp--)    {      temp = path[fp];      path[fp] = path[bp];      path[bp] = temp;    }  cur_index = (len - 1) - cur_index;}intPath::size() const{  // this should be more clever and ask the id's what their sizes are.  return len*4;}boolPath::member(const ID& id) const// rtn true iff id is in path{  return member(id, invalid_addr);  }boolPath::member(const ID& id, const ID& MAC_id) const// rtn true iff id or MAC_id is in path{  for (int c = 0; c < len ; c++)    if (path[c] == id || path[c] == MAC_id)      return true;  return false;}voidPath::unparse(FILE *out) const{  // change to put ()'s around the cur_index entry?  if (len==0)    {      fprintf(out,"<empty path>");      return;    }  for (int c = 0 ; c < len-1 ; c ++)    {      if (c == cur_index) fprintf(out,"(");      path[c].unparse(out);      if (c == cur_index) fprintf(out,")");      fprintf(out,",");    }  if (len-1 == cur_index) fprintf(out,"(");  path[len-1].unparse(out);  if (len-1 == cur_index) fprintf(out,")");}char *Path::dump() const{  static int which = 0;  static char buf[4][100];  char *ptr = buf[which];  char *rtn_buf = ptr;  which = (which + 1) % 4;    if (len == 0)    {      sprintf(rtn_buf,"[<empty path>]");      return rtn_buf;    }  *ptr++ = '[';  for (int c = 0 ; c < len ; c ++)    {      if (c == cur_index) *ptr++ = '(';      ptr += sprintf(ptr,"%s%s ",path[c].dump(), c == cur_index ? ")" : "");    }  *ptr++ = ']';  *ptr++ = '\0';  return rtn_buf;}voidcompressPath(Path &path)// take a path and remove any double backs from it// eg:  A B C B D --> A B D{  // idea: walk one pointer from begining  //  for each elt1 start at end of path and walk a pointer backwards (elt2)  //   if forward pointer = backward pointer, go on and walk foward one more  //   if elt1 = elt2 then append {(elt2 + 1) to end} after forward pointer  //    update length of path (we just cut out a loopback) and walk forward  //  when forward walking pointer reaches end of path we're done  int fp = 0, bp; // the forward walking ptr and the back walking ptr  while (fp < path.len)    {      for (bp = path.len - 1; bp != fp; bp--)	{	  if (path.path[fp] == path.path[bp])	    { int from, to;	      for (from = bp, to = fp;		   from < path.len ;		   from++, to++)		path.path[to] = path.path[from];	      path.len = to;	      break;	    } // end of removing double back	} // end of scaning to check for double back      fp++; // advance the forward moving pointer    }}void CopyIntoPath(Path& to, const Path& from, int start, int stop)// sets to[0->(stop-start)] = from[start->stop]{  assert(start >= 0 && stop < from.len);  int f, t,c ;			// from and to indices  for(f = start, t = 0; f <= stop; f++, t++)    to.path[t] = from.path[f];  if (to.len < stop - start + 1) to.len = stop - start + 1;  for (c = to.len - 1; c >= 0; c--)    {      if (to.path[c] == to.owner()) break;      if (to.path[c] == ((Path &)from).owner()) 	{	  to.owner() = ((Path &)from).owner();	  break;	}    } }voidPath::checkpath() const{  for(int c = 0; c < MAX_SR_LEN; c++)    {           assert(path[c].type == NONE ||             path[c].type == MAC ||             path[c].type == IP);    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99国产精品久久久久久久久久久 | 日韩va欧美va亚洲va久久| 日日噜噜夜夜狠狠视频欧美人| 大白屁股一区二区视频| 91麻豆精品国产91久久久更新时间| 久久久国产精华| 美腿丝袜亚洲三区| 欧美三级乱人伦电影| 国产精品久久久久久久岛一牛影视 | 日韩欧美视频在线| 亚洲午夜在线视频| 99久久久国产精品| 亚洲国产高清在线| 国产精品影视网| 欧美va天堂va视频va在线| 亚洲国产你懂的| 日本二三区不卡| 综合欧美亚洲日本| 不卡一卡二卡三乱码免费网站| 欧美精品一区二区三区在线 | 亚洲第一久久影院| 91免费观看国产| 亚洲天堂成人网| av在线这里只有精品| 国产精品色哟哟| 国产精品99久久久久久久vr| 久久综合九色综合欧美就去吻| 免播放器亚洲一区| 日韩天堂在线观看| 久久se精品一区精品二区| 欧美一区二区三区四区在线观看 | 日韩一区二区三区观看| 视频一区在线视频| 日韩一区二区三区在线| 老司机精品视频一区二区三区| 日韩情涩欧美日韩视频| 蜜臀久久99精品久久久画质超高清| 欧美疯狂性受xxxxx喷水图片| 偷拍与自拍一区| 日韩欧美资源站| 国内不卡的二区三区中文字幕| 2021中文字幕一区亚洲| 高清免费成人av| 最好看的中文字幕久久| 日本高清视频一区二区| 亚洲综合图片区| 欧美一级二级在线观看| 国产在线精品一区二区不卡了| 久久精品人人做人人综合| av欧美精品.com| 亚洲国产裸拍裸体视频在线观看乱了| 欧美喷潮久久久xxxxx| 免费精品视频最新在线| 欧美激情一区在线| 91国模大尺度私拍在线视频| 秋霞电影网一区二区| 久久久久久久久久看片| 色综合婷婷久久| 日韩国产欧美在线观看| 国产欧美日韩在线视频| 欧美在线影院一区二区| 精品一区二区在线免费观看| 国产精品久久久久久妇女6080| 欧美日韩成人高清| 国产精品亚洲午夜一区二区三区| 亚洲三级视频在线观看| 欧美一区二区福利在线| 成人禁用看黄a在线| 五月天中文字幕一区二区| 久久久精品黄色| 欧美日韩在线电影| 国产一二三精品| 亚洲国产日韩av| 国产日本欧洲亚洲| 欧美猛男gaygay网站| 国产一区二区三区精品视频| 一区二区三区国产| 国产欧美一区二区精品仙草咪 | 欧美成人免费网站| 色爱区综合激月婷婷| 极品美女销魂一区二区三区| 一区二区三区四区乱视频| 久久人人97超碰com| 欧美日韩一卡二卡| 91丨porny丨户外露出| 国产一区二区三区黄视频 | 日韩免费福利电影在线观看| 99精品国产99久久久久久白柏| 蜜桃av一区二区三区电影| 亚洲欧美一区二区三区国产精品| wwww国产精品欧美| 欧美一区二区大片| 欧美日韩一区二区三区视频| 成人美女在线观看| 国产一区视频在线看| 日本vs亚洲vs韩国一区三区| 一区二区三区视频在线观看| 国产精品免费人成网站| 精品国产免费视频| 91精品国产91久久综合桃花| 在线视频你懂得一区二区三区| 成人听书哪个软件好| 韩国女主播成人在线| 免费xxxx性欧美18vr| 日韩电影网1区2区| 午夜视频在线观看一区二区三区 | 欧美三级三级三级| 色综合久久久久久久久久久| 成人美女在线视频| 成人高清av在线| 不卡视频在线看| 高清不卡一区二区在线| 国产suv精品一区二区883| 国产在线乱码一区二区三区| 激情图片小说一区| 国产一区视频导航| 国产成人午夜高潮毛片| 丁香啪啪综合成人亚洲小说| 岛国精品在线播放| 99在线热播精品免费| 91日韩精品一区| 色94色欧美sute亚洲线路二 | 日韩欧美中文字幕一区| 日韩欧美在线观看一区二区三区| 日韩一区二区三| 久久日一线二线三线suv| 久久久99久久| 亚洲图片你懂的| 亚洲成人综合在线| 极品少妇xxxx偷拍精品少妇| 国产成人午夜精品影院观看视频 | 一区在线播放视频| 亚洲综合久久久久| 日韩电影一区二区三区| 国产综合色视频| 成人激情小说网站| 欧美日韩三级在线| 精品蜜桃在线看| 国产精品欧美一区二区三区| 一区二区欧美精品| 麻豆精品视频在线| 99在线精品视频| 欧美一区二区在线观看| 久久蜜桃一区二区| 亚洲已满18点击进入久久| 麻豆精品久久久| 99精品视频在线免费观看| 欧美理论在线播放| 欧美国产在线观看| 日韩在线一区二区| 成人app在线观看| 91精品国产91综合久久蜜臀| 中国色在线观看另类| 午夜精品久久久久久久久久| 国产精品亚洲专一区二区三区| 欧美最猛黑人xxxxx猛交| 久久久噜噜噜久噜久久综合| 一区二区三区不卡在线观看 | 欧美日韩国产精品自在自线| 久久午夜老司机| 偷拍自拍另类欧美| 9久草视频在线视频精品| 日韩欧美一区二区久久婷婷| 亚洲少妇30p| 国产精品资源网站| 欧美日韩国产高清一区二区三区| 中文幕一区二区三区久久蜜桃| 日韩av在线发布| 一本大道久久a久久精二百| 久久亚洲一区二区三区明星换脸 | 日韩伦理av电影| 国产精品一卡二| 91精品国产91久久久久久最新毛片| 自拍偷拍欧美精品| 国产美女娇喘av呻吟久久| 欧美人与z0zoxxxx视频| 亚洲免费av观看| 成人小视频在线观看| 精品美女一区二区| 日韩电影在线免费观看| 在线免费不卡电影| 亚洲欧洲日产国产综合网| 国产精品影视网| 精品国产人成亚洲区| 麻豆国产精品一区二区三区 | 日本不卡视频在线观看| 欧美性受xxxx黑人xyx| 日韩理论片在线| 99国产一区二区三精品乱码| 日本一区免费视频| 国产高清亚洲一区| 久久精品一级爱片| 国产一区在线视频| 久久久久久夜精品精品免费| 精品午夜一区二区三区在线观看| 欧美一级高清片| 久久99精品一区二区三区三区| 日韩你懂的在线播放| 毛片av一区二区三区| 欧美大片一区二区|