1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-13 15:14:54 +02:00

Add StreamHost.toString()

This commit is contained in:
Florian Schmaus 2019-05-08 09:24:23 +02:00
parent 7f0dc72dab
commit fd89a5e5a5

View file

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