| 113 | /** Used to read the remap.config file after the manager signals a change. */ |
| 114 | struct UR_UpdateContinuation : public Continuation { |
| 115 | int |
| 116 | file_update_handler(int /* etype ATS_UNUSED */, void * /* data ATS_UNUSED */) |
| 117 | { |
| 118 | static_cast<void>(reloadUrlRewrite()); |
| 119 | delete this; |
| 120 | return EVENT_DONE; |
| 121 | } |
| 122 | UR_UpdateContinuation(Ptr<ProxyMutex> &m) : Continuation(m) { SET_HANDLER(&UR_UpdateContinuation::file_update_handler); } |
| 123 | }; |
| 124 |
nothing calls this directly
no test coverage detected