18 lines
455 B
Java
18 lines
455 B
Java
/*
|
|
* 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;
|
|
}
|
|
|