| 118 | trigger_async_action(struct pending_request *req); |
| 119 | |
| 120 | static struct pending_request * |
| 121 | find_pending_request(const char *dst, const char *act_name) |
| 122 | { |
| 123 | struct pending_request *r; |
| 124 | |
| 125 | TAILQ_FOREACH(r, &pending_requests.requests, next) { |
| 126 | if (!strcmp(r->dst, dst) && |
| 127 | !strcmp(r->request->name, act_name)) |
| 128 | break; |
| 129 | } |
| 130 | |
| 131 | return r; |
| 132 | } |
| 133 | |
| 134 | static void |
| 135 | create_socket_path(const char *name, char *buf, int len) |
no test coverage detected