ssh_scp_push_file64 method

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

Implementation

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