| 1100 | -------------------------------------------------------------------------*/ |
| 1101 | |
| 1102 | inline const char * |
| 1103 | HTTPHdr::reason_get(int *length) |
| 1104 | { |
| 1105 | ink_assert(valid()); |
| 1106 | ink_assert(m_http->m_polarity == HTTP_TYPE_RESPONSE); |
| 1107 | |
| 1108 | return http_hdr_reason_get(m_http, length); |
| 1109 | } |
| 1110 | |
| 1111 | /*------------------------------------------------------------------------- |
| 1112 | -------------------------------------------------------------------------*/ |
no test coverage detected