(String[] args)
| 25 | } |
| 26 | |
| 27 | public static void main(String[] args) throws InterruptedException { |
| 28 | var so = new TcpSocket(new TestRecv("server"), new InetSocketAddress(9999), new Acceptor(9999, null)); |
| 29 | |
| 30 | Thread.sleep(Integer.MAX_VALUE); |
| 31 | } |
| 32 | |
| 33 | @Override |
| 34 | public void OnHandshakeDone(@NotNull AsyncSocket so) throws Exception { |