1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-13 19:37:51 +00:00

remove static from i2p::util::url

This commit is contained in:
chertov 2014-04-18 00:22:54 +04:00
parent eed04265bb
commit 7defa34d88
2 changed files with 9 additions and 9 deletions

View File

@ -248,14 +248,14 @@ namespace http
return "";
}
}
std::string url::portstr_ = "80";
unsigned int url::port_ = 80;
std::string url::user_ = "";
std::string url::pass_ = "";
url::url(const std::string& url_s)
{
portstr_ = "80";
port_ = 80;
user_ = "";
pass_ = "";
parse(url_s);
}

8
util.h
View File

@ -41,10 +41,10 @@ namespace util
void parse(const std::string& url_s);
public:
std::string protocol_, host_, path_, query_;
static std::string portstr_;
static unsigned int port_;
static std::string user_;
static std::string pass_;
std::string portstr_;
unsigned int port_;
std::string user_;
std::string pass_;
};
}
}