| 31 | } |
| 32 | |
| 33 | void msg_enqueue(struct msg_queue *q, const u8 *add) |
| 34 | { |
| 35 | if (q->fd_passing) |
| 36 | assert(fromwire_peektype(add) != MSG_PASS_FD); |
| 37 | do_enqueue(q, add); |
| 38 | } |
| 39 | |
| 40 | void msg_enqueue_fd(struct msg_queue *q, int fd) |
| 41 | { |
no test coverage detected