| 5520 | } |
| 5521 | |
| 5522 | TSReturnCode |
| 5523 | TSHttpAltInfoCachedReqGet(TSHttpAltInfo infop, TSMBuffer *bufp, TSMLoc *obj) |
| 5524 | { |
| 5525 | sdk_assert(sdk_sanity_check_alt_info(infop) == TS_SUCCESS); |
| 5526 | |
| 5527 | HttpAltInfo *info = reinterpret_cast<HttpAltInfo *>(infop); |
| 5528 | |
| 5529 | *(reinterpret_cast<HTTPHdr **>(bufp)) = &info->m_cached_req; |
| 5530 | *obj = reinterpret_cast<TSMLoc>(info->m_cached_req.m_http); |
| 5531 | |
| 5532 | return sdk_sanity_check_mbuffer(*bufp); |
| 5533 | } |
| 5534 | |
| 5535 | TSReturnCode |
| 5536 | TSHttpAltInfoCachedRespGet(TSHttpAltInfo infop, TSMBuffer *bufp, TSMLoc *obj) |