| 123 | } |
| 124 | |
| 125 | static u64 map_be64(const struct gossmap *map, size_t offset) |
| 126 | { |
| 127 | be64 be64; |
| 128 | map_copy(map, offset, &be64, sizeof(be64)); |
| 129 | return be64_to_cpu(be64); |
| 130 | } |
| 131 | |
| 132 | static void map_nodeid(const struct gossmap *map, size_t offset, |
| 133 | struct node_id *id) |
no test coverage detected