| 6523 | } |
| 6524 | |
| 6525 | void |
| 6526 | TSCacheHttpInfoSizeSet(TSCacheHttpInfo infop, int64_t size) |
| 6527 | { |
| 6528 | // TODO: Check input ? |
| 6529 | CacheHTTPInfo *info = reinterpret_cast<CacheHTTPInfo *>(infop); |
| 6530 | |
| 6531 | info->object_size_set(size); |
| 6532 | } |
| 6533 | |
| 6534 | // this function should be called at TS_EVENT_HTTP_READ_RESPONSE_HDR |
| 6535 | void |
nothing calls this directly
no test coverage detected