update http proxy lib.

This commit is contained in:
amass 2023-12-30 00:08:02 +08:00
parent 52b593ce63
commit c1b636acee
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#include <boost/url/rfc/detail/path_rules.hpp>
#include <string_view>
boost::urls::result<TemplateSegmentRule::value_type> TemplateSegmentRule::parse(const char *&iterator,
boost::system::result<TemplateSegmentRule::value_type> TemplateSegmentRule::parse(const char *&iterator,
const char *end) const noexcept {
TemplateSegmentRule::value_type ret;
bool isTemplate = false;

View File

@ -48,7 +48,7 @@ private:
class TemplateSegmentRule {
public:
using value_type = TemplateSegment;
boost::urls::result<value_type> parse(char const *&iterator, char const *end) const noexcept;
boost::system::result<value_type> parse(char const *&iterator, char const *end) const noexcept;
};
constexpr auto templateSegmentRule = TemplateSegmentRule{};