added incoming_filter

This commit is contained in:
Nathan Fritz
2009-07-11 21:46:31 +00:00
parent 171bb30e83
commit 7a15d14c93
2 changed files with 12 additions and 8 deletions

View File

@@ -289,10 +289,14 @@ class XMLStream(object):
self.state.set('ssl',False)
time.sleep(1)
self.connect()
def incoming_filter(self, xmlobj):
return xmlobj
def __spawnEvent(self, xmlobj):
"watching xmlOut and processes handlers"
#convert XML into Stanza
xmlobj = self.incoming_filter(xmlobj)
logging.debug("PROCESSING: %s" % xmlobj.tag)
stanza = None
for stanza_class in self.__root_stanza: