| 720 | -------------------------------------------------------------------------*/ |
| 721 | |
| 722 | inline void |
| 723 | URL::fragment_set(const char *value, int length) |
| 724 | { |
| 725 | ink_assert(valid()); |
| 726 | m_url_impl->set_fragment(m_heap, value, length, true); |
| 727 | } |
| 728 | |
| 729 | /** |
| 730 | Parser doesn't clear URL first, so if you parse over a non-clear URL, |
no test coverage detected