genesis 1 # 0x00 Broadcast The message is to be relayed to the entire net.
genesis 2 # 0x01 Direct The message is strictly for the addressee, and is not intended to be relayed.
genesis 3 # 0x02 Reserved
genesis 4 # ... ... Packet is rejected
genesis 5 # 0xFE Reserved
genesis 6 # 0xFF Ignore A station may transmit garbage messages to its peers, to frustrate traffic analysis by snoops. In such cases, it will consist of arbitrary random bytes. A recipient of such a message may relay it to an arbitrary subset of his WOT. Receipt of a garbage message must not result in any console output.
genesis 7
genesis 8 BROADCAST = 0x00
genesis 9 DIRECT = 0x01
9982-getdata 10 GETDATA = 0x03
genesis 11 IGNORE = 0xFF
9982-getdata 12 COMMAND_LABELS = {
9982-getdata 13 BROADCAST: "BROADCAST",
9982-getdata 14 DIRECT: "DIRECT",
9982-getdata 15 GETDATA: "GETDATA",
9982-getdata 16 IGNORE: "IGNORE"
9982-getdata 17 }