Android 上的 DTN(延迟容忍网络)
Android 上是否已通过蓝牙汇聚层实现了 DTN 堆栈?
我查看了 Bytewalla 等现有实现,但它们目前仅支持 TCP。我知道 Bytewalla 实现可以扩展以支持蓝牙,但如果其他人已经做到了,我不想重新发明轮子......
Has there been an implementation of the DTN stack on Android with the Bluetooth Convergence Layer?
I have looked at existing implementations like Bytewalla, but they support only TCP as of now. I understand that the Bytewalla implementation can be extended to support Bluetooth, but did not want to re-invent the wheel if someone else has done it already...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有自己的捆绑协议的 Java 实现,运行在
LTP
(LickLider Transmission Protocol) 上,该协议是由我的朋友和同事设计和实现的。LTP
可以在WiFi
和蓝牙
上运行。您可能想检查一下。
[1] http://irg.cs.ohiou.edu/ocp/index.html< /a>
注意:Impl 现在有点旧了。 BP 协议也有很多变化(当时是草案,现在是标准轨道 RFC)。所以你可能想做一些探索。
I had my own Java Implementation of Bundling protocol running on
LTP
(LickLider Transmission Protocol) that was design and implemented by my friend and Colleague.LTP
could run onWiFi
as well asBlueTooth
.You may want to check that out.
[1] http://irg.cs.ohiou.edu/ocp/index.html
Note : the Impl is a bit old now. There are lot of changes to the BP protocol as well (it was a draft then, now its a standard track RFC). so you may want to do some exploration.