| 3108 | } |
| 3109 | |
| 3110 | void |
| 3111 | TSCacheHttpInfoRespGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *obj) |
| 3112 | { |
| 3113 | CacheHTTPInfo *info = reinterpret_cast<CacheHTTPInfo *>(infop); |
| 3114 | |
| 3115 | *(reinterpret_cast<HTTPHdr **>(bufp)) = info->response_get(); |
| 3116 | *obj = reinterpret_cast<TSMLoc>(info->response_get()->m_http); |
| 3117 | sdk_assert(sdk_sanity_check_mbuffer(*bufp) == TS_SUCCESS); |
| 3118 | } |
| 3119 | |
| 3120 | time_t |
| 3121 | TSCacheHttpInfoReqSentTimeGet(TSCacheHttpInfo infop) |
no test coverage detected