fix connection to FT proxies. Fixes #7349

This commit is contained in:
Yann Leboulanger 2013-07-07 14:22:37 +02:00
parent 44513b912e
commit 1b803b7780
1 changed files with 4 additions and 0 deletions

View File

@ -871,6 +871,10 @@ class Socks5:
"""
Get sha of sid + Initiator jid + Target jid
"""
if self.file_props.is_a_proxy:
return hashlib.sha1('%s%s%s' % (self.sid,
self.file_props.proxy_sender, self.file_props.proxy_receiver)
).hexdigest()
return hashlib.sha1('%s%s%s' % (self.sid, self.initiator,
self.target)).hexdigest()