We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents84119e5 +0fa1805 commitb9efd09Copy full SHA for b9efd09
http/src/network/protocol/http/message/async_message.hpp
@@ -46,7 +46,10 @@ template <class Tag> struct async_message {
46
destination_(other.destination_),
47
status_(other.status_),
48
headers_(other.headers_),
49
- body_(other.body_) {}
+ body_(other.body_),
50
+ added_headers(other.added_headers),
51
+ removed_headers(other.removed_headers),
52
+ retrieved_headers_(other.retrieved_headers_) {}
53
54
string_typeconststatus_message()const {return status_message_.get(); }
55
@@ -117,6 +120,9 @@ template <class Tag> struct async_message {
117
120
std::swap(destination_, other.destination_);
118
121
std::swap(headers_, other.headers_);
119
122
std::swap(body_, other.body_);
123
+std::swap(added_headers, other.added_headers);
124
+std::swap(removed_headers, other.removed_headers);
125
+std::swap(retrieved_headers_, other.retrieved_headers_);
126
}
127
128
async_message&operator=(async_message other) {