ssh_channel_open_forward method

int ssh_channel_open_forward(
  1. ssh_channel channel,
  2. Pointer<Int8> remotehost,
  3. int remoteport,
  4. Pointer<Int8> sourcehost,
  5. int localport,
)

Implementation

int ssh_channel_open_forward(
  ssh_channel channel,
  ffi.Pointer<ffi.Int8> remotehost,
  int remoteport,
  ffi.Pointer<ffi.Int8> sourcehost,
  int localport,
) {
  return _ssh_channel_open_forward(
    channel,
    remotehost,
    remoteport,
    sourcehost,
    localport,
  );
}