| 133 | void set_status(int status_code) { mStatusCode = status_code; } |
| 134 | void set_status_text(const fl::string& status_text) { mStatusText = status_text; } |
| 135 | void set_text(const fl::string& body) { mBody = body; } // Backward compatibility |
| 136 | void set_body(const fl::string& body) { mBody = body; } |
| 137 | void set_header(const fl::string& name, const fl::string& value) { |
| 138 | mHeaders[name] = value; |