KLALB UDP TEST

This commit is contained in:
Administrator
2024-01-30 16:54:09 +08:00
parent 722ab9710f
commit b4fccf3a03
67 changed files with 1977 additions and 929 deletions
@@ -0,0 +1,19 @@
package org.kne.cloud.network;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.SocketAddress;
import java.net.SocketException;
import java.net.SocketImpl;
public abstract class VirtualSocketImpl extends SocketImpl {
@Override
public abstract InputStream getInputStream() throws IOException ;
@Override
public abstract OutputStream getOutputStream() throws IOException;
}