| 239 | //////////////////////////////////////////////////////////////////////// |
| 240 | |
| 241 | static int |
| 242 | config_callback(const char * /* name ATS_UNUSED */, RecDataT /* data_type ATS_UNUSED */, RecData /* data ATS_UNUSED */, |
| 243 | void *cookie) |
| 244 | { |
| 245 | HttpBodyFactory *body_factory = static_cast<HttpBodyFactory *>(cookie); |
| 246 | body_factory->reconfigure(); |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | void |
| 251 | HttpBodyFactory::reconfigure() |
nothing calls this directly
no test coverage detected