ns2中层之间关联回顾

在节点接收到数据后,要经过phy.mac层进行依次处理。如下代码

//phy.cc

Phy::recv(Packet* p, Handler*)
{
 struct hdr_cmn *hdr = HDR_CMN(p); 
 //struct hdr_sr *hsr = HDR_SR(p);
 
 /*
  * Handle outgoing packets
  */
 switch(hdr->direction()) {
 case hdr_cmn::DOWN :
  /*
   * The MAC schedules its own EOT event so we just
   * ignore the handler here.  It's only purpose
   * it distinguishing between incoming and outgoing
   * packets.
   */
  sendDown(p);
  return;
 case hdr_cmn::UP :
  if (sendUp(p) == 0) {
   /*
    * XXX - This packet, even though not detected,
    * contributes to the Noise floor and hence
    * may affect the reception of other packets.
    */
   Packet::free(p);
   return;
  } else {
   uptarget_->recv(p, (Handler*) 0);//send the packet to up layer,the mac layer
  }
  break;
 default:
  printf("Direction for pkt-flow not specified; Sending pkt up the stack on default.\n\n");
  if (sendUp(p) == 0) {
   /*
    * XXX - This packet, even though not detected,
    * contributes to the Noise floor and hence
    * may affect the reception of other packets.
    */
   Packet::free(p);
   return;
  } else {
   uptarget_->recv(p, (Handler*) 0);
  }
 }
 
}

在节点配置脚本中配置了phy的uptarget-是mac层对象。见mobilenode(tcl).
这个知识点经常会忘记,所以在这记一笔。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值