2
  typedef  nx_struct RouteRequest{

    nx_uint16_t   src ; // the node ID of RREQ originator 

    nx_uint16_t   desn ;  // the node ID of desired destination

    nx_uint16_t   reqid;  // unique id to recognize duplicate request

   nx_uint16_t  route_record;  // append node address in the route record

    nx_uint8_t  numhops;  // hop count 
 } RouteRequest;

我的问题是,虽然路由请求(src、desn、reqid)在到达目标节点之前是相同的。在路线记录中,每个注释都必须在其中附加其地址(Node_id)。那么路由记录中的字节会发生变化,对吗??
请在这方面帮助我..

谢谢, 普雷姆

4

1 回答 1

0

路由记录将在每一跳处扩展,在每一跳处附加字节。沿途每个数据包都可以使用此字节列表来了解其前身。

于 2019-02-06T17:33:57.427 回答