| 3150 | } |
| 3151 | |
| 3152 | void |
| 3153 | TSCacheHttpInfoRespSet(TSCacheHttpInfo infop, TSMBuffer bufp, TSMLoc obj) |
| 3154 | { |
| 3155 | HTTPHdr h; |
| 3156 | |
| 3157 | SET_HTTP_HDR(h, bufp, obj); |
| 3158 | |
| 3159 | CacheHTTPInfo *info = reinterpret_cast<CacheHTTPInfo *>(infop); |
| 3160 | info->response_set(&h); |
| 3161 | } |
| 3162 | |
| 3163 | int |
| 3164 | TSCacheHttpInfoVector(TSCacheHttpInfo infop, void *data, int length) |
nothing calls this directly
no test coverage detected