We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982fd4c commit 45734dfCopy full SHA for 45734df
boost/network/protocol/http/message/wrappers/uri.hpp
@@ -23,7 +23,7 @@ namespace boost { namespace network { namespace http {
23
: message_(message) {}
24
typedef typename basic_request<Tag>::string_type string_type;
25
operator string_type() {
26
- return message_.uri();
+ return message_.uri().raw();
27
}
28
};
29
boost/network/uri/basic_uri.hpp
@@ -78,6 +78,10 @@ namespace boost { namespace network { namespace uri {
78
return parts_.fragment ? *parts_.fragment : string_type();
79
80
81
+ string_type raw() const {
82
+ return raw_;
83
+ }
84
+
85
bool valid() const {
86
return valid_;
87
0 commit comments