Skip to content
Snippets Groups Projects
Commit 04812921 authored by Yun Liu's avatar Yun Liu
Browse files

for port modification continued

parent c766b737
No related branches found
No related tags found
No related merge requests found
......@@ -725,10 +725,11 @@ void SIPVoIPLink::setSipServer(const std::string& sipServer)
void SIPVoIPLink::setPortNumber(const std::string& port)
{
istringstream is(port);
std::istringstream is(port);
unsigned int iPort;
is >> iPort;
_port = port;
_port = iPort;
}
pj_str_t SIPVoIPLink::string2PJStr(const std::string &value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment