mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Add RPC shard download
This commit is contained in:
@@ -92,6 +92,15 @@ struct parsedURL
|
||||
std::string domain;
|
||||
boost::optional<std::uint16_t> port;
|
||||
std::string path;
|
||||
|
||||
bool
|
||||
operator == (parsedURL const& other) const
|
||||
{
|
||||
return scheme == other.scheme &&
|
||||
domain == other.domain &&
|
||||
port == other.port &&
|
||||
path == other.path;
|
||||
}
|
||||
};
|
||||
|
||||
bool parseUrl (parsedURL& pUrl, std::string const& strUrl);
|
||||
|
||||
Reference in New Issue
Block a user