ssh_scp_push_file method

int ssh_scp_push_file(
  1. ssh_scp scp,
  2. Pointer<Int8> filename,
  3. int size,
  4. int perms,
)

Implementation

int ssh_scp_push_file(
  ssh_scp scp,
  ffi.Pointer<ffi.Int8> filename,
  int size,
  int perms,
) {
  return _ssh_scp_push_file(
    scp,
    filename,
    size,
    perms,
  );
}