vote up 2 vote down star
1

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

flag

1 Answer

vote up 0 vote down check

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.