text separator in incoming message
Brought to you by:
thesverre
in Listener.java line 106 u get the text by checking the
index of ":"
...
int ind = response.indexOf(":",2);
...
text = response.substring(ind+1);
...
the separator is ":" but after the host. If someone has
an ipv6 ip (not reversed) separated by ":" the resulting
text is a portion of ipv6 and then the text.. I don't have
a great solution now :)