You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The http::request constructor accepting an rvalue of the underlying beast request currently parses cookies. However, this doesn't really make sense. We should only parse cookies when we really need them. This should happen outside of the http::request type. We already have http::cookie_value for this.
Furthermore, the cookie handling between an http::request and an http::response should be the same. The same free standing functions can be used.
The text was updated successfully, but these errors were encountered:
The
http::request
constructor accepting an rvalue of the underlying beast request currently parses cookies. However, this doesn't really make sense. We should only parse cookies when we really need them. This should happen outside of thehttp::request
type. We already havehttp::cookie_value
for this.Furthermore, the cookie handling between an
http::request
and anhttp::response
should be the same. The same free standing functions can be used.The text was updated successfully, but these errors were encountered: