Erlang:如何设置或检查UDP数据包中的TTL?

发布于 2024-07-24 08:08:59 字数 204 浏览 8 评论 0原文

在Erlang中,我如何:

  • 设置发送的UDP数据包的TTL?

  • 获取接收到的UDP数据包的TTL值?

我需要这样做来实现 GTSM

In Erlang, how can I:

  • Set the TTL for sent UDP packets?

  • Retrieve the value of the TTL for received UDP packets?

I need to do this to implement GTSM

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

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

发布评论

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

评论(1

慵挽 2024-07-31 08:08:59

gen_udp 当前不提供执行此操作的方法。 您需要修改其下面的 inet 层以允许此新功能。 如果您查看它们允许设置的其他选项(例如multicast_ttl),那么这样做并不困难,并且您可能可以实现允许此支持的gen_udp:send,recv和open。

gen_udp does not currently provide a way to do this. you would need to modify the inet layer below it to allow for this new functionality. It would not be difficult to do so, if you look at the other options they allow setting, like multicast_ttl and you can probably implement a gen_udp:send,recv and open that allow for this suppoert.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文