2

I wanted to parse my own data using response_parser of boost::http. All the documentation I found is linked with http::request of boost. I have written my own SSLLink to get data. I want to feed the data incrementally to response_parser and check if a complete message has been parsed.

I found this answer somewhat relevant: Parse Response. but it doesn't not provide method to feed data incrementally.

bonacci
  • 121
  • 4

1 Answers1

1

This is fully explained in the documentation: https://www.boost.org/doc/libs/1_67_0/libs/beast/doc/html/beast/using_http/buffer_oriented_parsing.html

Vinnie Falco
  • 5,173
  • 28
  • 43