| 1831 | } |
| 1832 | |
| 1833 | void finish_all_active_slots(void) |
| 1834 | { |
| 1835 | struct active_request_slot *slot = active_queue_head; |
| 1836 | |
| 1837 | while (slot != NULL) |
| 1838 | if (slot->in_use) { |
| 1839 | run_active_slot(slot); |
| 1840 | slot = active_queue_head; |
| 1841 | } else { |
| 1842 | slot = slot->next; |
| 1843 | } |
| 1844 | } |
| 1845 | |
| 1846 | /* Helpers for modifying and creating URLs */ |
| 1847 | static inline int needs_quote(int ch) |
no test coverage detected