| 45 | } |
| 46 | |
| 47 | bool |
| 48 | HttpHeader::setStatus(TSHttpStatus const newstatus) |
| 49 | { |
| 50 | if (!isValid()) { |
| 51 | return false; |
| 52 | } |
| 53 | |
| 54 | return TS_SUCCESS == TSHttpHdrStatusSet(m_buffer, m_lochdr, newstatus); |
| 55 | } |
| 56 | |
| 57 | char * |
| 58 | HttpHeader::urlString(int *const urllen) const |
no test coverage detected