| 5533 | } |
| 5534 | |
| 5535 | TSReturnCode |
| 5536 | TSHttpAltInfoCachedRespGet(TSHttpAltInfo infop, TSMBuffer *bufp, TSMLoc *obj) |
| 5537 | { |
| 5538 | sdk_assert(sdk_sanity_check_alt_info(infop) == TS_SUCCESS); |
| 5539 | |
| 5540 | HttpAltInfo *info = reinterpret_cast<HttpAltInfo *>(infop); |
| 5541 | |
| 5542 | *(reinterpret_cast<HTTPHdr **>(bufp)) = &info->m_cached_resp; |
| 5543 | *obj = reinterpret_cast<TSMLoc>(info->m_cached_resp.m_http); |
| 5544 | |
| 5545 | return sdk_sanity_check_mbuffer(*bufp); |
| 5546 | } |
| 5547 | |
| 5548 | void |
| 5549 | TSHttpAltInfoQualitySet(TSHttpAltInfo infop, float quality) |