Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with setting the TTL on my Datagram packets. I am calling the setTTL(...) method on the packet before sending the packet to the multicastSocket but if I capture the packet with ethereal the TTL field is always set to 0

share|improve this question

1 Answer

up vote 3 down vote accepted

Funny that you should ask this, because I just wrote about this yesterday, I was having the same problem about 6 months ago. Basically you have to set an special system property telling the JVM to use an IPv4 stack:

-Djava.net.preferIPv4Stack=true
share|improve this answer
thanks I'll give that a try – ajerebek Sep 26 '08 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.