removed debug strings
This commit is contained in:
parent
a9d00f7412
commit
1b1d56d4cb
|
@ -462,24 +462,22 @@ class Connection:
|
||||||
gajim.log.debug('_siResultCB')
|
gajim.log.debug('_siResultCB')
|
||||||
id = iq_obj.getAttr('id')
|
id = iq_obj.getAttr('id')
|
||||||
if not self.files_props.has_key(id):
|
if not self.files_props.has_key(id):
|
||||||
gajim.log.debug('files_props - no key' + str(id))
|
# no such jid
|
||||||
return
|
return
|
||||||
file_props = self.files_props[id]
|
file_props = self.files_props[id]
|
||||||
if file_props is None:
|
if file_props is None:
|
||||||
gajim.log.debug('files_props none')
|
# file properties for jid is none
|
||||||
return
|
return
|
||||||
file_props['receiver'] = str(iq_obj.getFrom())
|
file_props['receiver'] = str(iq_obj.getFrom())
|
||||||
jid = iq_obj.getFrom().getStripped().encode('utf8')
|
jid = iq_obj.getFrom().getStripped().encode('utf8')
|
||||||
si = iq_obj.getTag('si')
|
si = iq_obj.getTag('si')
|
||||||
feature = si.setTag('feature')
|
feature = si.setTag('feature')
|
||||||
if feature.getNamespace() != common.xmpp.NS_FEATURE:
|
if feature.getNamespace() != common.xmpp.NS_FEATURE:
|
||||||
gajim.log.debug('wrong ns' + str(feature.getNamespace()))
|
|
||||||
return
|
return
|
||||||
form_tag = feature.getTag('x')
|
form_tag = feature.getTag('x')
|
||||||
form = common.xmpp.DataForm(node=form_tag)
|
form = common.xmpp.DataForm(node=form_tag)
|
||||||
field = form.getField('stream-method')
|
field = form.getField('stream-method')
|
||||||
if field.getValue() != common.xmpp.NS_BYTESTREAM:
|
if field.getValue() != common.xmpp.NS_BYTESTREAM:
|
||||||
gajim.log.debug('wrong field stream' + str(field.getValue()))
|
|
||||||
return
|
return
|
||||||
self.send_socks5_info(file_props)
|
self.send_socks5_info(file_props)
|
||||||
raise common.xmpp.NodeProcessed
|
raise common.xmpp.NodeProcessed
|
||||||
|
@ -496,7 +494,6 @@ class Connection:
|
||||||
return
|
return
|
||||||
|
|
||||||
def send_socks5_info(self, file_props):
|
def send_socks5_info(self, file_props):
|
||||||
gajim.log.debug('send_socks5_info' + str(file_props))
|
|
||||||
if type(self.peerhost) != tuple:
|
if type(self.peerhost) != tuple:
|
||||||
return
|
return
|
||||||
port = gajim.config.get('file_transfers_port')
|
port = gajim.config.get('file_transfers_port')
|
||||||
|
@ -506,7 +503,6 @@ class Connection:
|
||||||
listener = gajim.socks5queue.start_listener(self.peerhost[0], port,
|
listener = gajim.socks5queue.start_listener(self.peerhost[0], port,
|
||||||
sha_str, self.result_socks5_sid, file_props['sid'])
|
sha_str, self.result_socks5_sid, file_props['sid'])
|
||||||
if listener == None:
|
if listener == None:
|
||||||
gajim.log.debug(_('UNABLE TO SET LISTENER ON %s %s') % (self.peerhost[0], port))
|
|
||||||
# FIXME - raise error dialog that address is in use
|
# FIXME - raise error dialog that address is in use
|
||||||
return
|
return
|
||||||
iq = common.xmpp.Protocol(name = 'iq', to = str(file_props['receiver']),
|
iq = common.xmpp.Protocol(name = 'iq', to = str(file_props['receiver']),
|
||||||
|
|
Loading…
Reference in New Issue