| 3139 | } |
| 3140 | |
| 3141 | void |
| 3142 | TSCacheHttpInfoReqSet(TSCacheHttpInfo infop, TSMBuffer bufp, TSMLoc obj) |
| 3143 | { |
| 3144 | HTTPHdr h; |
| 3145 | |
| 3146 | SET_HTTP_HDR(h, bufp, obj); |
| 3147 | |
| 3148 | CacheHTTPInfo *info = reinterpret_cast<CacheHTTPInfo *>(infop); |
| 3149 | info->request_set(&h); |
| 3150 | } |
| 3151 | |
| 3152 | void |
| 3153 | TSCacheHttpInfoRespSet(TSCacheHttpInfo infop, TSMBuffer bufp, TSMLoc obj) |
nothing calls this directly
no test coverage detected