GEt DSR 邻居节点

发布于 2024-10-15 23:32:07 字数 79 浏览 1 评论 0原文

我正在使用 ns2 DSR 协议。我想了解如何在 DSR 协议中获取邻居节点以及如何在 DSR 中获取路由表。请帮助我

提前谢谢

i am working in ns2 DSR protocol. i wnt to learn how to get neighbor node in DSR protocol and how to get Routing table in DSR. please help me

advance thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄意 2024-10-22 23:32:07

使用 mobicache.cc 下定义的 addRoute 函数来显示缓存内容。每次调用 addRoute 函数时,一个简单的 printf 语句将显示所有路由:

path &p = cache[0];
printf("%s %d %s", routecache->net_id.dump(), p.length(), p.dump());

Use the addRoute function defined under mobicache.cc to display the cache contents..a simple printf statement will display all the routes each time the addRoute function is called:

path &p = cache[0];
printf("%s %d %s", routecache->net_id.dump(), p.length(), p.dump());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文