Add StreamHost.toString()

This commit is contained in:
Florian Schmaus 2019-05-08 09:24:23 +02:00
parent 7f0dc72dab
commit fd89a5e5a5
1 changed files with 5 additions and 0 deletions

View File

@ -337,6 +337,11 @@ public class Bytestream extends IQ {
xml.closeEmptyElement();
return xml;
}
@Override
public String toString() {
return "SOCKS5 Stream Host: " + jid + "[" + address + ":" + port + "]";
}
}
/**