![]() |
|
Register | FAQ | The Twelve Commandments | Members List | Calendar | Arcade | Find the Best VPN | Today's Posts | Search |
General Gnutella Development Discussion For general discussion about Gnutella development. |
![]() |
| LinkBack | Thread Tools | Display Modes |
| |||
![]() Just a side note. I haven't read the gnutella protocol yet - btu feel like I should comment on your post. It the protocol both implementes TTL and HOP and TTL is decremented by 1 each HOP and HOP incremented... what's the use of TTL then? TTL usually is a value in seconds and thereby relative to the package timestamp of sending. The HOP should be sufficient for this use. Not to have clients search infinite and or make crazy round trips. Maybe I have misunderstood the concept you just explained... if so - sorry for taking up your time ![]() // A-Vizion |
| |||
![]() Indeed, many would wonder why you'd have a TTL *and* a HOP count. But there's something you can't tell without the other: How far does it need to go, and how far away did it come from? For TTL only: Where did the TTL start? Did it start with TTL of 7? Or a TTL of 255? I only see TTL = 2! For Hops only: At which Hop count do I stop? At 3, 7, 100? Am I the first to see this message? The last? There are cases where you need to know how far a message has traveled. For example, a PONG message with a TTL of 7 and a hop count of 0 most likely came from a node directly connected to you. You might need to correct the IP address in this PONG message before you pass it on. Also, you might want to prevent multiple PING messages within a short timespan from your direct connected node. Now, your assumption that the TTL is the time in seconds is incorrect in terms of the Gnutella protocol. When you're talking about ICMP (Pings, traceroutes), yes, TTL would give you a timestamp. But with Gnutella, it is merely any given number, and at each node, this number is decreased. -- Mike |
| ||||
![]() Question from yesterday on IRC... Q: When do we throw away messages, TTL=0 or TTL=1? A: Here is a little pseudo code: if(ttl == 0) DropConnection(); //bad client, must not happen ttl--; hop++; if(ttl>0) message.DoForward(); //message routing message.DoEvaluateAndResponse(); //work :-) |
![]() |
| |