Skip to content

Commit

Permalink
add SAM session in webconsole
Browse files Browse the repository at this point in the history
  • Loading branch information
r4sas committed Oct 5, 2017
1 parent 057d6ca commit bfdf006
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion daemon/HTTPServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,8 +589,9 @@ namespace http {
s << "<b>SAM Sessions:</b><br>\r\n<br>\r\n";
for (auto& it: sam->GetSessions ())
{
auto& name = it.second->localDestination->GetNickname ();
s << "<a href=\"/?page=" << HTTP_PAGE_SAM_SESSION << "&sam_id=" << it.first << "\">";
s << it.first << "</a><br>\r\n" << std::endl;
s << name << " (" << it.first << ")</a><br>\r\n" << std::endl;
}
}

Expand Down

0 comments on commit bfdf006

Please sign in to comment.