HttpRequestData accessors Can not be inlined due being virtual functions
| 53 | // Can not be inlined due being virtual functions |
| 54 | // |
| 55 | char * |
| 56 | HttpRequestData::get_string() |
| 57 | { |
| 58 | char *str = hdr->url_string_get(nullptr); |
| 59 | |
| 60 | if (str) { |
| 61 | unescapifyStr(str); |
| 62 | } |
| 63 | return str; |
| 64 | } |
| 65 | |
| 66 | const char * |
| 67 | HttpRequestData::get_host() |
no test coverage detected