public void RemovePortForwarding(LocalPortForwarding remote)
 {
     RemovePortForwarding(remote.LocalPort);
 }
 public void AddPortForwarding(LocalPortForwarding remote)
 {
     _session.setPortForwardingL(remote.LocalPort, remote.Destination.Address.ToString(), remote.Destination.Port);
 }