17#ifndef TOOLBOX_HTTP_APP_HPP
18#define TOOLBOX_HTTP_APP_HPP
23inline namespace http {
33 App() noexcept = default;
37 constexpr
App(const
App&) noexcept = default;
38 App& operator=(const
App&) noexcept = default;
41 constexpr
App(
App&&) noexcept = default;
42 App& operator=(
App&&) noexcept = default;
44 void on_http_connect(
CyclTime now, const
Endpoint& ep) { do_on_http_connect(now, ep); }
47 do_on_http_disconnect(now, ep);
52 do_on_http_error(now, ep, e, os);
56 do_on_http_message(now, ep, req, os);