| 157 | } |
| 158 | |
| 159 | static int count_headers(void *h_, const char *key, const char *value) |
| 160 | { |
| 161 | hlog *h = h_; |
| 162 | |
| 163 | h->count += count_string(key)+count_string(value)+2; |
| 164 | |
| 165 | return 1; |
| 166 | } |
| 167 | |
| 168 | static int log_headers(void *h_, const char *key, const char *value) |
| 169 | { |
nothing calls this directly
no test coverage detected