You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
521 B
22 lines
521 B
20 years ago
|
package de.anomic.server;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
public interface serverPortForwarding {
|
||
|
public void init(
|
||
|
String remoteHost,
|
||
|
int remotePort,
|
||
|
String remoteUser,
|
||
|
String remotePwd,
|
||
|
String localHost,
|
||
|
int localPort
|
||
|
);
|
||
|
|
||
|
public String getHost();
|
||
|
public int getPort();
|
||
|
public String getUser();
|
||
|
|
||
|
public void connect() throws IOException;
|
||
|
public void disconnect() throws IOException;
|
||
|
}
|