Package | Description |
---|---|
com.maverick.sshd.platform |
This package contains the interfaces that are required to be
implemented to create an SSH server implementation.
|
com.maverick.sshd.sftp | |
com.maverick.sshd.sftp.extensions |
Modifier and Type | Method and Description |
---|---|
void |
FileSystem.closeFile(byte[] handle)
Deprecated.
Close an open file or directory.
|
SftpFileAttributes |
FileSystem.getFileAttributes(byte[] handle)
Deprecated.
Get the attributes for a given file handle.
|
String |
FileSystem.getPathForHandle(byte[] handle)
Deprecated.
Return the path for a given handle.
|
SftpFile[] |
FileSystem.readDirectory(byte[] handle)
Deprecated.
Read the contents of a directory.
|
int |
FileSystem.readFile(byte[] handle,
UnsignedInteger64 offset,
byte[] buffer,
int start,
int numBytesToRead)
Deprecated.
Read a block of data from an open file.
|
void |
FileSystem.setFileAttributes(byte[] handle,
SftpFileAttributes attrs)
Deprecated.
Set the open files attributes
|
void |
FileSystem.writeFile(byte[] handle,
UnsignedInteger64 offset,
byte[] data,
int off,
int len)
Deprecated.
Write a block of data to an open file.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractFileSystem.closeFile(byte[] handle) |
boolean |
AbstractFileSystem.closeFile(byte[] handle,
boolean remove) |
protected boolean |
AbstractFileSystem.closeFile(String handle,
boolean remove) |
void |
AbstractFileSystem.copyData(byte[] handle,
UnsignedInteger64 offset,
UnsignedInteger64 length,
byte[] toHandle,
UnsignedInteger64 toOffset) |
SftpFileAttributes |
AbstractFileSystem.getFileAttributes(byte[] handle) |
AbstractFile |
AbstractFileSystem.getFileForHandle(byte[] handle) |
String |
AbstractFileSystem.getPathForHandle(byte[] handle) |
SftpFile[] |
AbstractFileSystem.readDirectory(byte[] handle) |
int |
AbstractFileSystem.readFile(byte[] handle,
UnsignedInteger64 offset,
byte[] buf,
int start,
int numBytesToRead) |
void |
AbstractFileSystem.setFileAttributes(byte[] handle,
SftpFileAttributes attrs) |
void |
AbstractFileSystem.writeFile(byte[] handle,
UnsignedInteger64 offset,
byte[] data,
int off,
int len) |
Modifier and Type | Method and Description |
---|---|
protected byte[] |
AbstractDigestExtension.doHash(String algorithm,
byte[] handle,
long startOffset,
long length,
SftpSubsystem sftp) |
protected byte[] |
AbstractDigestExtension.doHash(String algorithm,
String filename,
long startOffset,
long length,
SftpSubsystem sftp) |
protected byte[] |
AbstractMD5Extension.doMD5Hash(byte[] handle,
long startOffset,
long length,
byte[] quickCheckHash,
SftpSubsystem sftp) |
protected byte[] |
AbstractMD5Extension.doMD5Hash(String filename,
long startOffset,
long length,
byte[] quickCheckHash,
SftpSubsystem sftp) |
Copyright © 2023. All rights reserved.