
* Remove TCP entry point Resolve #987 * Remove TCP entry point * Servers that do not support WebSocket will be marked as `Legacy` * Removal of TCP connection from the master will follow later. * Tweaked error message
7 lines
183 B
C++
7 lines
183 B
C++
#include "serverinfo.h"
|
|
|
|
QString ServerInfo::toString() const
|
|
{
|
|
return QString("%1 (%2:%3)").arg(name.isEmpty() ? QStringLiteral("Unnamed Server") : name).arg(address).arg(port);
|
|
}
|