| 1112 | -------------------------------------------------------------------------*/ |
| 1113 | |
| 1114 | inline void |
| 1115 | HTTPHdr::reason_set(const char *value, int length) |
| 1116 | { |
| 1117 | ink_assert(valid()); |
| 1118 | ink_assert(m_http->m_polarity == HTTP_TYPE_RESPONSE); |
| 1119 | |
| 1120 | http_hdr_reason_set(m_heap, m_http, value, length, true); |
| 1121 | } |
| 1122 | |
| 1123 | /*------------------------------------------------------------------------- |
| 1124 | -------------------------------------------------------------------------*/ |
no test coverage detected