| 282 | } |
| 283 | |
| 284 | bool |
| 285 | HttpProxyPort::loadConfig(std::vector<self> &entries) |
| 286 | { |
| 287 | char *text; |
| 288 | bool found_p; |
| 289 | |
| 290 | text = REC_readString(PORTS_CONFIG_NAME, &found_p); |
| 291 | if (found_p) { |
| 292 | self::loadValue(entries, text); |
| 293 | } |
| 294 | ats_free(text); |
| 295 | |
| 296 | return 0 < entries.size(); |
| 297 | } |
| 298 | |
| 299 | bool |
| 300 | HttpProxyPort::loadDefaultIfEmpty(Group &ports) |
nothing calls this directly
no test coverage detected