| 438 | } |
| 439 | bool has_http_response() const { return _http_response; } |
| 440 | HttpHeader* release_http_response() { |
| 441 | HttpHeader* const tmp = _http_response; |
| 442 | _http_response = NULL; |
| 443 | return tmp; |
| 444 | } |
| 445 | |
| 446 | // User attached data or body of http response, which is wired to network |
| 447 | // directly instead of being serialized into protobuf messages. |