Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion include/bitcoin/network/channels/channel_http.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,10 @@ class BCT_API channel_http
/// Dispatch request to subscribers by verb type.
virtual void dispatch(const http::request_cptr& request) NOEXCEPT;

virtual void size_json_buffer(http::response& response) NOEXCEPT;
/// Size and assign response_buffer_ if value type is json or json-rpc.
virtual void assign_json_buffer(http::response& response) NOEXCEPT;

// Handlers.
virtual void handle_receive(const code& ec, size_t bytes,
const http::request_cptr& request) NOEXCEPT;
virtual void handle_send(const code& ec, size_t bytes, http::response_ptr&,
Expand Down
Loading