Home | History | Annotate | Download | only in http

Lines Matching refs:Reply

189 // Call the Reply() or the appropriate ReplyNNN() specialization to provide
191 // custom response headers. The Reply-methods will already provide the
200 // Generic reply method.
201 void Reply(int status_code,
205 // Reply with text body.
209 // Reply with JSON object. The content type will be "application/json".
219 void Reply(int status_code,
224 Reply(status_code, data.data(), data.size() * sizeof(T), mime_type);
230 void Reply(int status_code, const T& data, const std::string& mime_type) {
233 Reply(status_code, &data, sizeof(T), mime_type);