Returns true if we queued this for later handling (steals if true) */
| 305 | |
| 306 | /* Returns true if we queued this for later handling (steals if true) */ |
| 307 | static bool handle_master_request_later(struct peer *peer, const u8 *msg) |
| 308 | { |
| 309 | if (peer->stfu) { |
| 310 | msg_enqueue(peer->update_queue, take(msg)); |
| 311 | return true; |
| 312 | } |
| 313 | return false; |
| 314 | } |
| 315 | |
| 316 | /* Compare, with false if either is NULL */ |
| 317 | static bool match_type(const u8 *t1, const u8 *t2) |