Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Erlang 中,我该如何:
为发送的UDP数据包设置TTL?
检索接收到的 UDP 数据包的 TTL 值?
我需要这样做来实现GTSM
gen_udp 目前不提供执行此操作的方法。您需要修改其下方的 inet 层以允许使用此新功能。这样做并不难,如果您查看它们允许设置的其他选项,例如 multicast_ttl,您可能可以实现允许此支持的 gen_udp:send,recv 和 open。
code