| 1871 | } |
| 1872 | |
| 1873 | int |
| 1874 | HTTPHdr::url_printed_length(unsigned normalization_flags) |
| 1875 | { |
| 1876 | int zret = -1; |
| 1877 | UrlPrintHack hack(this); |
| 1878 | if (hack.is_valid()) { |
| 1879 | zret = m_url_cached.length_get(normalization_flags); |
| 1880 | } |
| 1881 | return zret; |
| 1882 | } |
| 1883 | |
| 1884 | // Look for headers that the proxy will need to be able to process |
| 1885 | // Return false if the proxy does not know how to process the header |
no test coverage detected