vote up 0 vote down star

In Java, is there a way to control the TTL of the IP header for packets sent on a socket?

flag

59% accept rate

2 Answers

vote up 1 vote down check

Apparently only on Multicast sockets, which have:

MulticastSocket.setTimeToLive(int ttl);
link|flag
vote up 1 vote down

Setting the TTL using

MulticastSocket.setTimeToLive(int ttl);

is only going to work if you have enabled the IPV4Stack as outlined by this other question

http://stackoverflow.com/questions/139909/java-multicast-time-to-live-is-always-0

-Djava.net.preferIPv4Stack=true
link|flag

Your Answer

Get an OpenID
or

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