Skip to content

Commit 84998d4

Browse files
committed
Missed changes to the message_base type.
1 parent 3c7c8fa commit 84998d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/network/message/message_base.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ struct message_base {
2929
virtual void get_headers(boost::function<void(std::string const &, std::string const &)> inserter) const = 0;
3030
virtual void get_headers(std::string const & name, boost::function<void(std::string const &, std::string const &)> inserter) const = 0;
3131
virtual void get_headers(boost::function<bool(std::string const &, std::string const &)> predicate, boost::function<void(std::string const &, std::string const &)> inserter) const = 0;
32+
virtual void get_body(boost::function<void(std::string::const_iterator, size_t)> chunk_reader, size_t size) const = 0;
3233
virtual void get_body(std::string & body) const = 0;
33-
virtual void get_body(boost::function<void(boost::iterator_range<char const *>)> chunk_reader, size_t size) const = 0;
3434

3535
// Destructor
3636
virtual ~message_base() = 0; // pure virtual

0 commit comments

Comments
 (0)