13 #ifndef tunneledHost_hpp 14 #define tunneledHost_hpp 16 #ifndef INDI_DEFAULT_PORT 17 #define INDI_DEFAULT_PORT (7624) 49 int name(
const std::string & nn )
101 std::ostringstream k;
113 std::ostringstream k;
130 int parse(
const std::string & cnws)
133 std::string cn = cnws;
134 cn.erase(std::remove_if(cn.begin(), cn.end(), ::isspace), cn.end());
137 size_t first = cn.find(
':', 0);
141 std::cerr <<
"No host found.\n";
145 if(first == cn.size()-1)
147 std::cerr <<
"Localport can't be empty.\n";
151 if(first == std::string::npos)
153 std::cerr <<
"Must specify localport.\n";
159 size_t second = cn.find(
':', first+1);
162 if(second != std::string::npos )
164 if(second == cn.size()-1)
166 std::cerr <<
"Localport can't be empty.\n";
170 m_name = cn.substr(0, first);
176 m_remotePort = atoi( cn.substr(first, second - first).c_str());
179 m_localPort = atoi( cn.substr(second+1, cn.size()-second-1).c_str());
183 m_name = cn.substr(0, first);
186 m_localPort = atoi( cn.substr(first, cn.size()-first).c_str());
197 #endif //tunneledHost_hpp #define INDI_DEFAULT_PORT
std::string remoteSpec()
Get the remote specification string, "name:remotePort".
int m_localPort
The local port which will be forwarded.
int remotePort(const int &rp)
Set the remote port.
int localPort(const int &lp)
Set the local port.
int parse(const std::string &cnws)
Parse a host specification string into the component parts.
int remotePort() const
Get the remote port.
Contains the details of a tunneled-host specification and provides parsing.
int m_remotePort
The remote port on the host.
std::string name() const
Get the host name.
std::string m_name
The host name or ip address.
int name(const std::string &nn)
Set the host name.
int localPort() const
Get the localPort.
std::string fullSpec()
Get the full specification string, "name:remotePort:localPort".