ssh_channel_request_exec method

int ssh_channel_request_exec(
  1. ssh_channel channel,
  2. Pointer<Int8> cmd
)

Implementation

int ssh_channel_request_exec(
  ssh_channel channel,
  ffi.Pointer<ffi.Int8> cmd,
) {
  return _ssh_channel_request_exec(
    channel,
    cmd,
  );
}