Method of getting the status code bitset
| 728 | |
| 729 | // Method of getting the status code bitset |
| 730 | static int |
| 731 | negative_revalidating_list_cb(const char *name, RecDataT dtype, RecData data, void *cookie) |
| 732 | { |
| 733 | HttpConfigParams *c = static_cast<HttpConfigParams *>(cookie); |
| 734 | // Signal an update if valid value arrived. |
| 735 | if (set_negative_revalidating_list(name, dtype, data, c, true)) { |
| 736 | http_config_cb(name, dtype, data, cookie); |
| 737 | } |
| 738 | return REC_ERR_OKAY; |
| 739 | } |
| 740 | |
| 741 | // Method of loading the negative caching config bitset |
| 742 | void |
nothing calls this directly
no test coverage detected