RESOLVED - # 99: Change StringBuffer deleteCharAt() to integer

http://bugs.koc.se/view.php?id=99

Added Base64 decoder
This commit is contained in:
Ziver Koc 2012-02-05 21:31:22 +00:00
parent e46ecc1dca
commit 6e890b81e1
8 changed files with 292 additions and 16 deletions

View file

@ -132,5 +132,12 @@ public class ThreadedUDPNetwork extends Thread{
this.thread = thread;
}
/**
* Stops the server and interrupts its internal thread.
* This is a permanent action that will not be able to recover from
*/
public void close(){
this.interrupt();
socket.close();
}
}