Searched refs:_bindAddress (Results 1 – 4 of 4) sorted by relevance
45 : _bindAddress(bindAddress), _io_service(), _acceptor(_io_service), _socket(_io_service) in CRemoteProcessorServer()66 if (convertTo(_bindAddress, port)) { in start()75 size_t protocolDelPos = _bindAddress.find(protocolDel); in start()77 error = "bindaddress " + _bindAddress + " ill formed, missing " + protocolDel; in start()80 std::string protocol = _bindAddress.substr(0, protocolDelPos); in start()84 error = "bindaddress " + _bindAddress + " has invalid protocol " + protocol; in start()87 isInet = (_bindAddress.find(tcpProtocol) != std::string::npos); in start()89 size_t portDelPos = _bindAddress.find(':', protocolDelPos + protocolDel.size()); in start()91 error = "bindaddress " + _bindAddress + " ill formed, missing " + ":"; in start()94 std::string portLiteral{_bindAddress.substr(portDelPos + 1)}; in start()[all …]
58 std::string _bindAddress; variable
59 return _bindAddress; in getServerBindAddress()73 xmlElement.getAttribute("ServerPort", _bindAddress); in fromXml()
61 std::string _bindAddress; variable