| 983 | -------------------------------------------------------------------------*/ |
| 984 | |
| 985 | inline URL * |
| 986 | HTTPHdr::url_create(URL *u) |
| 987 | { |
| 988 | ink_assert(valid()); |
| 989 | ink_assert(m_http->m_polarity == HTTP_TYPE_REQUEST); |
| 990 | |
| 991 | u->set(this); |
| 992 | u->create(m_heap); |
| 993 | return (u); |
| 994 | } |
| 995 | |
| 996 | /*------------------------------------------------------------------------- |
| 997 | -------------------------------------------------------------------------*/ |
no test coverage detected