| 120 | // Maximum accepted HTTP request body size (in bytes) |
| 121 | void set_max_body_size_bytes(std::size_t bytes) { max_body_size_bytes_ = bytes; } |
| 122 | std::size_t get_max_body_size_bytes() const { return max_body_size_bytes_; } |
| 123 | |
| 124 | void register_handler(const std::string& method, const std::string& path, RequestHandler handler); |
| 125 |