| 30 | } |
| 31 | |
| 32 | void run(const u8 *data, size_t size) |
| 33 | { |
| 34 | if (setjmp(exit_jmp) != 0) |
| 35 | return; |
| 36 | |
| 37 | u8 *msg = tal_dup_arr(tmpctx, u8, data, size, 0); |
| 38 | struct per_peer_state pps = { .peer_fd = -1 }; |
| 39 | handle_peer_error_or_warning(&pps, msg); |
| 40 | |
| 41 | clean_tmpctx(); |
| 42 | } |
nothing calls this directly
no test coverage detected