25 lines
834 B
Java
25 lines
834 B
Java
/*
|
|
* 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;
|
|
}
|
|
|