I'm inserting a custom field in a HTTP request via
req.insert("some-custom-header-field-name", "some-value");
On the server side I fetch field names via
boost::beast::http::to_string(field.name()).data()
However, instead of the expected field name it will be
<unknown-field>
How do I set custom field names in Beast?