15 std::size_t pos = this->
next_url_.find(
"{{device_name}}");
16 if (pos != std::string::npos) {
18 copy.replace(pos, 15, device_name);
22 pos = this->
next_url_.find(
"{{ip_address}}");
23 if (pos != std::string::npos) {
26 std::string ipa = ip.str();
27 copy.replace(pos, 14, ipa);