| 1072 | -------------------------------------------------------------------------*/ |
| 1073 | |
| 1074 | inline HTTPStatus |
| 1075 | HTTPHdr::status_get() const |
| 1076 | { |
| 1077 | ink_assert(valid()); |
| 1078 | |
| 1079 | if (m_http) { |
| 1080 | ink_assert(m_http->m_polarity == HTTP_TYPE_RESPONSE); |
| 1081 | return http_hdr_status_get(m_http); |
| 1082 | } |
| 1083 | |
| 1084 | return HTTP_STATUS_NONE; |
| 1085 | } |
| 1086 | |
| 1087 | /*------------------------------------------------------------------------- |
| 1088 | -------------------------------------------------------------------------*/ |
no test coverage detected