| 1857 | } |
| 1858 | |
| 1859 | int |
| 1860 | HTTPHdr::url_print(char *buff, int length, int *offset, int *skip, unsigned normalization_flags) |
| 1861 | { |
| 1862 | ink_release_assert(offset); |
| 1863 | ink_release_assert(skip); |
| 1864 | |
| 1865 | int zret = 0; |
| 1866 | UrlPrintHack hack(this); |
| 1867 | if (hack.is_valid()) { |
| 1868 | zret = m_url_cached.print(buff, length, offset, skip, normalization_flags); |
| 1869 | } |
| 1870 | return zret; |
| 1871 | } |
| 1872 | |
| 1873 | int |
| 1874 | HTTPHdr::url_printed_length(unsigned normalization_flags) |
no test coverage detected