| 198 | } |
| 199 | |
| 200 | int |
| 201 | http_config_cb(const char * /* name ATS_UNUSED */, RecDataT /* data_type ATS_UNUSED */, RecData /* data ATS_UNUSED */, |
| 202 | void * /* cookie ATS_UNUSED */) |
| 203 | { |
| 204 | ink_atomic_increment(&http_config_changes, 1); |
| 205 | |
| 206 | INK_MEMORY_BARRIER; |
| 207 | |
| 208 | eventProcessor.schedule_in(http_config_cont, HRTIME_SECONDS(1), ET_CALL); |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | // [amc] Not sure which is uglier, this switch or having a micro-function for each var. |
| 213 | // Oh, how I long for when we can use C++eleventy lambdas without compiler problems! |
no test coverage detected