Mercurial > libervia-backend
comparison src/core/xmpp.py @ 461:4e361d295bca
core: typo
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 14 Mar 2012 23:41:06 +0100 |
parents | cf005701624b |
children | 448ce3c9e2ac |
comparison
equal
deleted
inserted
replaced
460:fb1abc0f8c6a | 461:4e361d295bca |
---|---|
344 self.xmlstream.sendFooter() | 344 self.xmlstream.sendFooter() |
345 | 345 |
346 class SatVersionHandler(generic.VersionHandler): | 346 class SatVersionHandler(generic.VersionHandler): |
347 | 347 |
348 def getDiscoInfo(self, requestor, target, node): | 348 def getDiscoInfo(self, requestor, target, node): |
349 #XXX: We need to work around wokkel's behavious (namespace not added if there is a | 349 #XXX: We need to work around wokkel's behaviour (namespace not added if there is a |
350 # node) as it cause issues with XEP-0115 & PEP (XEP-0163): there is a node when server | 350 # node) as it cause issues with XEP-0115 & PEP (XEP-0163): there is a node when server |
351 # ask for disco info, and not when we generate the key, so the hash is used with different | 351 # ask for disco info, and not when we generate the key, so the hash is used with different |
352 # disco features, and when the server (seen on ejabberd) generate its own hash for security check | 352 # disco features, and when the server (seen on ejabberd) generate its own hash for security check |
353 # it reject our features (resulting in e.g. no notification on PEP) | 353 # it reject our features (resulting in e.g. no notification on PEP) |
354 return generic.VersionHandler.getDiscoInfo(self, requestor, target, None) | 354 return generic.VersionHandler.getDiscoInfo(self, requestor, target, None) |