Method of getting the status code bitset
| 687 | |
| 688 | // Method of getting the status code bitset |
| 689 | static int |
| 690 | negative_caching_list_cb(const char *name, RecDataT dtype, RecData data, void *cookie) |
| 691 | { |
| 692 | HttpConfigParams *c = static_cast<HttpConfigParams *>(cookie); |
| 693 | // Signal an update if valid value arrived. |
| 694 | if (set_negative_caching_list(name, dtype, data, c, true)) { |
| 695 | http_config_cb(name, dtype, data, cookie); |
| 696 | } |
| 697 | return REC_ERR_OKAY; |
| 698 | } |
| 699 | |
| 700 | // Method of loading the negative caching config bitset |
| 701 | void |
nothing calls this directly
no test coverage detected