mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
http: replace boost::split with SplitString
Also removes boost/algorithm/string.hpp from expected includes
This commit is contained in:
parent
0d7efcdf75
commit
d1a9850102
2 changed files with 5 additions and 6 deletions
|
|
@ -21,8 +21,6 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
||||
/** WWW-Authenticate to present with 401 Unauthorized response */
|
||||
static const char* WWW_AUTH_HEADER_DATA = "Basic realm=\"jsonrpc\"";
|
||||
|
||||
|
|
@ -276,8 +274,10 @@ static bool InitRPCAuthentication()
|
|||
std::set<std::string>& whitelist = g_rpc_whitelist[strUser];
|
||||
if (pos != std::string::npos) {
|
||||
std::string strWhitelist = strRPCWhitelist.substr(pos + 1);
|
||||
std::set<std::string> new_whitelist;
|
||||
boost::split(new_whitelist, strWhitelist, boost::is_any_of(", "));
|
||||
std::vector<std::string> whitelist_split = SplitString(strWhitelist, ", ");
|
||||
std::set<std::string> new_whitelist{
|
||||
std::make_move_iterator(whitelist_split.begin()),
|
||||
std::make_move_iterator(whitelist_split.end())};
|
||||
if (intersect) {
|
||||
std::set<std::string> tmp_whitelist;
|
||||
std::set_intersection(new_whitelist.begin(), new_whitelist.end(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue