| 101 | } |
| 102 | |
| 103 | struct subd_req { |
| 104 | struct list_node list; |
| 105 | |
| 106 | /* Callback for a reply. */ |
| 107 | int type; |
| 108 | void (*replycb)(struct subd *, const u8 *, const int *, void *); |
| 109 | void *replycb_data; |
| 110 | |
| 111 | size_t num_reply_fds; |
| 112 | /* If non-NULL, this is here to disable replycb */ |
| 113 | void *disabler; |
| 114 | }; |
| 115 | |
| 116 | static void destroy_subd_req(struct subd_req *sr) |
| 117 | { |
no outgoing calls
no test coverage detected