File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
http/src/network/protocol/http/message Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,10 @@ template <class Tag> struct async_message {
46
46
destination_(other.destination_),
47
47
status_(other.status_),
48
48
headers_(other.headers_),
49
- body_(other.body_) {}
49
+ body_(other.body_),
50
+ added_headers(other.added_headers),
51
+ removed_headers(other.removed_headers),
52
+ retrieved_headers_(other.retrieved_headers_) {}
50
53
51
54
string_type const status_message () const { return status_message_.get (); }
52
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_ );
120
126
}
121
127
122
128
async_message& operator =(async_message other) {
You can’t perform that action at this time.
0 commit comments