- Timestamp:
- 05/13/08 03:59:10 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/zeroconf/connection_handlers_zeroconf.py
r9616 r9625 659 659 jid = frm 660 660 661 session = self.get_ session(frm, thread_id, mtype)661 session = self.get_or_create_session(frm, thread_id, mtype) 662 662 663 663 if thread_id and not session.received_thread_id: … … 795 795 raise common.xmpp.NodeProcessed 796 796 797 def get_session(self, jid, thread_id, type): 797 def terminate_sessions(self): 798 '''send termination messages and delete all active sessions''' 799 # XXX 800 pass 801 802 def get_or_create_session(self, jid, thread_id, type): 798 803 '''returns an existing session between this connection and 'jid', returns a new one if none exist.''' 799 804 session = self.find_session(jid, thread_id, type)
