- E983984D664DAEF6D42FD55C86F784BFEAD4057B78673C18A8F8E85346DB539F3F3429DE5185A86805A1E698C2907441B5C2017E224BB1606358B930615CE84C
+ 25A41366C0D57C2FA6EAABA61E0BDB07E77B9F48D09FB7FEA1D65296FCC68C8B8836F954B13DE8EE071061A6F49BF8DB89E958EC7B961AC974926F5163694C21
blatta/lib/infosec.py
(138 . 15)(138 . 16)
67
68 nonce, bounces, version, command, message_bytes = struct.unpack(RED_PACKET_FORMAT, red_packet_bytes)
69
70 # nothing to be done for an IGNORE command
71
72 if command == IGNORE:
73 return Message({"error_code": IGNORED})
74
75 # unpack message
76
77 int_ts, self_chain, net_chain, speaker, message = struct.unpack(MESSAGE_PACKET_FORMAT, message_bytes)
78 speaker = speaker.strip()
79
80 # nothing to be done for an IGNORE command
81
82 if command == IGNORE:
83 return Message({"speaker": speaker, "error_code": IGNORED})
84
85
86 # check timestamp
87