* @param forwardPort The remote port that the connection will be forwarded to.
* @return
*/
public ListeningPort createLocalToRemotePortForwarding(int recvPort, String forwardHost, int forwardPort)
throws IOException, InterruptedException {
return new PortForwarder(recvPort,
ForwarderFactory.create(this, forwardHost, forwardPort));
}