| 3098 | } |
| 3099 | |
| 3100 | void |
| 3101 | TSCacheHttpInfoReqGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *obj) |
| 3102 | { |
| 3103 | CacheHTTPInfo *info = reinterpret_cast<CacheHTTPInfo *>(infop); |
| 3104 | |
| 3105 | *(reinterpret_cast<HTTPHdr **>(bufp)) = info->request_get(); |
| 3106 | *obj = reinterpret_cast<TSMLoc>(info->request_get()->m_http); |
| 3107 | sdk_assert(sdk_sanity_check_mbuffer(*bufp) == TS_SUCCESS); |
| 3108 | } |
| 3109 | |
| 3110 | void |
| 3111 | TSCacheHttpInfoRespGet(TSCacheHttpInfo infop, TSMBuffer *bufp, TSMLoc *obj) |
no test coverage detected