| 259 | |
| 260 | |
| 261 | bool HTTPRequest::getExpectContinue() const |
| 262 | { |
| 263 | const std::string& expect = get(EXPECT, EMPTY); |
| 264 | return !expect.empty() && icompare(expect, "100-continue") == 0; |
| 265 | } |
| 266 | |
| 267 | |
| 268 | void HTTPRequest::setExpectContinue(bool expectContinue) |
no test coverage detected