Handle IMC ice-destroy packets.
This commit is contained in:
parent
181133d917
commit
9b8f1cf3ea
3 changed files with 9 additions and 5 deletions
|
|
@ -168,6 +168,8 @@ class IMC2Protocol(StatefulTelnetProtocol):
|
|||
IMC2_MUDLIST.remove_mud_from_packet(packet)
|
||||
elif packet.packet_type == 'ice-update':
|
||||
IMC2_CHANLIST.update_channel_from_packet(packet)
|
||||
elif packet.packet_type == 'ice-destroy':
|
||||
IMC2_CHANLIST.remove_channel_from_packet(packet)
|
||||
elif packet.packet_type == 'tell':
|
||||
sessions = session_mgr.find_sessions_from_username(packet.target)
|
||||
for session in sessions:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue