This commit is contained in:
Administrator
2024-08-18 17:47:11 +08:00
parent e4f4c77c19
commit e243203535
121 changed files with 7499 additions and 2169 deletions
@@ -0,0 +1,16 @@
package org.kne.cloud.network;
import java.io.IOException;
import java.net.Socket;
import java.nio.channels.SocketChannel;
public class DefaultSocketChannelBridgeFactory extends SocketChannelBridgeFactory {
@Override
public SocketChannelBridge createBridge(SocketChannel a, SocketChannel b) throws IOException {
return new SocketChannelBridge(a, b);
}
}