ssh_channel_cancel_forward method

int ssh_channel_cancel_forward(
  1. ssh_session session,
  2. Pointer<Int8> address,
  3. int port
)

Implementation

int ssh_channel_cancel_forward(
  ssh_session session,
  ffi.Pointer<ffi.Int8> address,
  int port,
) {
  return _ssh_channel_cancel_forward(
    session,
    address,
    port,
  );
}