Fixed UDP server for server queries not being terminated

This commit is contained in:
Obique PSWG
2017-02-14 17:44:12 -06:00
parent bb79fe9d89
commit cb1a82a3d5
4 changed files with 6 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -49,6 +49,12 @@ public class ServerConnectionService extends Service {
return super.initialize();
}
@Override
public boolean terminate() {
socket.terminate();
return super.terminate();
}
public void setRemoteAddress(InetAddress addr, int port) {
socket.setRemoteAddress(addr, port);
}