On Tue, Feb 17, 2009 at 11:08:12AM +0000, <Francesco Losciale>:
~> And f.e. using the Neigh constructor, we pass 'ntk_client[key]' as 
~> second argument,
~> that should be the 'idn', the neighbour id.
~> 
~> 238 radar.py: Neigh(key, self.ntk_client[key], ...


You're right. The 2nd and third arguments are switched:

            return Neigh(ip, self.ntk_client[ip],
                             self.translation_table[ip],
                             self.ip_table[ip].devs,
                             self.ip_table[ip].bestdev,
                             self.netid_table[ip])

should be instead:


            return Neigh(ip, self.translation_table[ip],
                             self.ntk_client[ip],
                             self.ip_table[ip].devs,
                             self.ip_table[ip].bestdev,
                             self.netid_table[ip])

but now with change 1507 everything change ( 
http://dev.hinezumi.org/changeset/1507 )
Eriol: please update the order of the arguments.

-- 
:wq!
"I don't know nothing" The One Who reached the Thinking Matter   '.'

[ Alpt --- Freaknet Medialab ]
[ GPG Key ID 441CF0EE ]
[ Key fingerprint = 8B02 26E8 831A 7BB9 81A9  5277 BFF8 037E 441C F0EE ]
_______________________________________________
Netsukuku mailing list
[email protected]
http://lists.dyne.org/mailman/listinfo/netsukuku

Reply via email to