| 67 | } |
| 68 | |
| 69 | void msg_enqueue(struct msg_queue *q, const u8 *add) |
| 70 | { |
| 71 | if (q->fd_passing) |
| 72 | assert(fromwire_peektype(add) != MSG_PASS_FD); |
| 73 | do_enqueue(q, add); |
| 74 | } |
| 75 | |
| 76 | void msg_enqueue_fd(struct msg_queue *q, int fd) |
| 77 | { |
no test coverage detected