mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 23:54:22 +01:00
We use the fourth value (size) to determine the type, unless the fifth value is suppled. That's silly: allow the fourth value to be a typename, since that's the only reason we care about the size at all! Unfortunately there are places in the spec where we use a raw fieldname without '*1' for a length, so we have to distingish this from the typename case. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1.2 KiB
1.2 KiB
| 1 | #include <lightningd/cryptomsg.h> |
|---|---|
| 2 | handshake_bad_command,0x8000 |
| 3 | initr_act1_bad_ecdh_for_ss,0x8011 |
| 4 | initr_act1_write_failed,0x8012 |
| 5 | initr_act2_read_failed,0x8013 |
| 6 | initr_act2_bad_version,0x8014 |
| 7 | initr_act2_bad_pubkey,0x8015 |
| 8 | initr_act2_bad_ecdh_for_ss,0x8016 |
| 9 | initr_act2_bad_tag,0x8017 |
| 10 | initr_act3_bad_hsm_ecdh,0x8018 |
| 11 | initr_act3_write_failed,0x8019 |
| 12 | respr_act1_read_failed,0x801A |
| 13 | respr_act1_bad_version,0x801B |
| 14 | respr_act1_bad_pubkey,0x801C |
| 15 | respr_act1_bad_hsm_ecdh,0x801D |
| 16 | respr_act1_bad_tag,0x801E |
| 17 | respr_act2_bad_ecdh_for_ss,0x801F |
| 18 | respr_act2_write_failed,0x8020 |
| 19 | respr_act3_read_failed,0x8021 |
| 20 | respr_act3_bad_version,0x8022 |
| 21 | respr_act3_bad_ciphertext,0x8023 |
| 22 | respr_act3_bad_pubkey,0x8024 |
| 23 | respr_act3_bad_ecdh_for_ss,0x8025 |
| 24 | respr_act3_bad_tag,0x8026 |
| 25 | # FIXME: This is probably too finegrained. |
| 26 | initr_act_one,1001 |
| 27 | initr_act_two,1002 |
| 28 | initr_act_three,1003 |
| 29 | respr_act_one,1011 |
| 30 | respr_act_two,1012 |
| 31 | respr_act_three,1013 |
| 32 | success,0 |
| 33 | handshake_responder,1 |
| 34 | handshake_responder,1,my_id,33 |
| 35 | handshake_responder_reply,101 |
| 36 | handshake_responder_reply,0,initiator_id,33 |
| 37 | handshake_responder_reply,33,cs,struct crypto_state |
| 38 | handshake_initiator,2 |
| 39 | handshake_initiator,0,my_id,33 |
| 40 | handshake_initiator,33,responder_id,33 |
| 41 | handshake_initiator_reply,102 |
| 42 | handshake_initiator_reply,0,cs,struct crypto_state |