link start!
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.io.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetAddress;
|
||||
import java.net.Socket;
|
||||
import java.net.UnknownHostException;
|
||||
|
||||
public interface IClientSocketFactory {
|
||||
public Socket createSocket(InetAddress var1, int var2) throws IOException;
|
||||
|
||||
public Socket createSocket(InetAddress var1, int var2, int var3) throws IOException;
|
||||
|
||||
public Socket createSocket(InetAddress var1, int var2, InetAddress var3, int var4) throws IOException;
|
||||
|
||||
public Socket createSocket(String var1, int var2) throws IOException, UnknownHostException;
|
||||
|
||||
public Socket createSocket(String var1, int var2, int var3) throws IOException, UnknownHostException;
|
||||
|
||||
public Socket createSocket(String var1, int var2, InetAddress var3, int var4) throws IOException, UnknownHostException;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.io.net;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetAddress;
|
||||
import java.net.ServerSocket;
|
||||
|
||||
public interface IServerSocketFactory {
|
||||
public ServerSocket createServerSocket(int var1) throws IOException;
|
||||
|
||||
public ServerSocket createServerSocket(int var1, int var2) throws IOException;
|
||||
|
||||
public ServerSocket createServerSocket(int var1, int var2, InetAddress var3) throws IOException;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package javax.baja.io.net;
|
||||
|
||||
import javax.baja.io.net.IClientSocketFactory;
|
||||
import javax.baja.io.net.IServerSocketFactory;
|
||||
|
||||
public interface ISocketFactory
|
||||
extends IClientSocketFactory,
|
||||
IServerSocketFactory {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user