| 123 | */ |
| 124 | |
| 125 | static struct mp_request * |
| 126 | find_request_by_id(uint64_t id) |
| 127 | { |
| 128 | struct mp_request *req; |
| 129 | TAILQ_FOREACH(req, &mp_request_list.list, next) { |
| 130 | if (req->user_req.id == id) |
| 131 | break; |
| 132 | } |
| 133 | return req; |
| 134 | } |
| 135 | |
| 136 | /* this ID is, like, totally guaranteed to be absolutely unique. pinky swear. */ |
| 137 | static uint64_t |
no outgoing calls
no test coverage detected