| 773 | -------------------------------------------------------------------------*/ |
| 774 | |
| 775 | void |
| 776 | http_hdr_reason_set(HdrHeap *heap, HTTPHdrImpl *hh, const char *value, int length, bool must_copy) |
| 777 | { |
| 778 | ink_assert(hh->m_polarity == HTTP_TYPE_RESPONSE); |
| 779 | mime_str_u16_set(heap, value, length, &(hh->u.resp.m_ptr_reason), &(hh->u.resp.m_len_reason), must_copy); |
| 780 | } |
| 781 | |
| 782 | /*------------------------------------------------------------------------- |
| 783 | -------------------------------------------------------------------------*/ |
no test coverage detected