| 287 | } |
| 288 | |
| 289 | void |
| 290 | ParentConfig::reconfigure() |
| 291 | { |
| 292 | Note("%s loading ...", ts::filename::PARENT); |
| 293 | |
| 294 | ParentConfigParams *params = nullptr; |
| 295 | |
| 296 | // Allocate parent table |
| 297 | P_table *pTable = new P_table(file_var, modulePrefix, &http_dest_tags); |
| 298 | |
| 299 | params = new ParentConfigParams(pTable); |
| 300 | ink_assert(params != nullptr); |
| 301 | |
| 302 | m_id = configProcessor.set(m_id, params); |
| 303 | |
| 304 | if (dbg_ctl_parent_config.on()) { |
| 305 | ParentConfig::print(); |
| 306 | } |
| 307 | |
| 308 | Note("%s finished loading", ts::filename::PARENT); |
| 309 | } |
| 310 | |
| 311 | void |
| 312 | ParentConfig::print() |
nothing calls this directly
no test coverage detected