libssh  0.10.6
The SSH library
Loading...
Searching...
No Matches
Functions
The SSH scp functions
Collaboration diagram for The SSH scp functions:

Functions

ssh_scp ssh_scp_new (ssh_session session, int mode, const char *location)
 Create a new scp session.
 
int ssh_scp_init (ssh_scp scp)
 Initialize the scp channel.
 
int ssh_scp_close (ssh_scp scp)
 Close the scp channel.
 
void ssh_scp_free (ssh_scp scp)
 Free a scp context.
 
int ssh_scp_push_directory (ssh_scp scp, const char *dirname, int mode)
 Create a directory in a scp in sink mode.
 
int ssh_scp_leave_directory (ssh_scp scp)
 Leave a directory.
 
int ssh_scp_push_file64 (ssh_scp scp, const char *filename, uint64_t size, int mode)
 Initialize the sending of a file to a scp in sink mode, using a 64-bit size.
 
int ssh_scp_push_file (ssh_scp scp, const char *filename, size_t size, int mode)
 Initialize the sending of a file to a scp in sink mode.
 
int ssh_scp_response (ssh_scp scp, char **response)
 
int ssh_scp_write (ssh_scp scp, const void *buffer, size_t len)
 Write into a remote scp file.
 
int ssh_scp_read_string (ssh_scp scp, char *buffer, size_t len)
 Read a string on a channel, terminated by '
'.
 
int ssh_scp_pull_request (ssh_scp scp)
 Wait for a scp request (file, directory).
 
int ssh_scp_deny_request (ssh_scp scp, const char *reason)
 Deny the transfer of a file or creation of a directory coming from the remote party.
 
int ssh_scp_accept_request (ssh_scp scp)
 Accepts transfer of a file or creation of a directory coming from the remote party.
 
int ssh_scp_read (ssh_scp scp, void *buffer, size_t size)
 Read from a remote scp file.
 
const char * ssh_scp_request_get_filename (ssh_scp scp)
 Get the name of the directory or file being pushed from the other party.
 
int ssh_scp_request_get_permissions (ssh_scp scp)
 Get the permissions of the directory or file being pushed from the other party.
 
size_t ssh_scp_request_get_size (ssh_scp scp)
 Get the size of the file being pushed from the other party.
 
uint64_t ssh_scp_request_get_size64 (ssh_scp scp)
 Get the size of the file being pushed from the other party.
 
int ssh_scp_integer_mode (const char *mode)
 Convert a scp text mode to an integer.
 
char * ssh_scp_string_mode (int mode)
 Convert a unix mode into a scp string.
 
const char * ssh_scp_request_get_warning (ssh_scp scp)
 Get the warning string from a scp handle.
 

Detailed Description

SCP protocol over SSH functions

Deprecated
Please use SFTP instead

Function Documentation

◆ ssh_scp_accept_request()

int ssh_scp_accept_request ( ssh_scp scp)

Accepts transfer of a file or creation of a directory coming from the remote party.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
Returns
SSH_OK if the message was sent, SSH_ERROR if sending the message failed, or sending it in a bad state.

◆ ssh_scp_close()

int ssh_scp_close ( ssh_scp scp)

Close the scp channel.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp context to close.
Returns
SSH_OK on success or an SSH error code.
See also
ssh_scp_init()

◆ ssh_scp_deny_request()

int ssh_scp_deny_request ( ssh_scp scp,
const char * reason )

Deny the transfer of a file or creation of a directory coming from the remote party.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[in]reasonA nul-terminated string with a human-readable explanation of the deny.
Returns
SSH_OK if the message was sent, SSH_ERROR if the sending the message failed, or sending it in a bad state.

◆ ssh_scp_free()

void ssh_scp_free ( ssh_scp scp)

Free a scp context.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe context to free.
See also
ssh_scp_new()

◆ ssh_scp_init()

int ssh_scp_init ( ssh_scp scp)

Initialize the scp channel.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp context to initialize.
Returns
SSH_OK on success or an SSH error code.
See also
ssh_scp_new()

◆ ssh_scp_integer_mode()

int ssh_scp_integer_mode ( const char * mode)

Convert a scp text mode to an integer.

Deprecated
Please use SFTP instead
Parameters
[in]modeThe mode to convert, e.g. "0644".
Returns
An integer value, e.g. 420 for "0644".

◆ ssh_scp_leave_directory()

int ssh_scp_leave_directory ( ssh_scp scp)

Leave a directory.

Deprecated
Please use SFTP instead
Returns
SSH_OK if the directory has been left, SSH_ERROR if an error occurred.
See also
ssh_scp_push_directory()

◆ ssh_scp_new()

ssh_scp ssh_scp_new ( ssh_session session,
int mode,
const char * location )

Create a new scp session.

Deprecated
Please use SFTP instead
Parameters
[in]sessionThe SSH session to use.
[in]modeOne of SSH_SCP_WRITE or SSH_SCP_READ, depending if you need to drop files remotely or read them. It is not possible to combine read and write. SSH_SCP_RECURSIVE Flag can be or'ed to this to indicate that you're going to use recursion. Browsing through directories is not possible without this.
[in]locationThe directory in which write or read will be done. Any push or pull will be relative to this place. This can also be a pattern of files to download (read).
Returns
A ssh_scp handle, NULL if the creation was impossible.

◆ ssh_scp_pull_request()

int ssh_scp_pull_request ( ssh_scp scp)

Wait for a scp request (file, directory).

Deprecated
Please use SFTP instead
Returns
SSH_SCP_REQUEST_NEWFILE: The other side is sending a file SSH_SCP_REQUEST_NEWDIR: The other side is sending a directory SSH_SCP_REQUEST_ENDDIR: The other side has finished with the current directory SSH_SCP_REQUEST_WARNING: The other side sent us a warning SSH_SCP_REQUEST_EOF: The other side finished sending us files and data. SSH_ERROR: Some error happened
See also
ssh_scp_read()
ssh_scp_deny_request()
ssh_scp_accept_request()
ssh_scp_request_get_warning()

◆ ssh_scp_push_directory()

int ssh_scp_push_directory ( ssh_scp scp,
const char * dirname,
int mode )

Create a directory in a scp in sink mode.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[in]dirnameThe name of the directory being created.
[in]modeThe UNIX permissions for the new directory, e.g. 0755.
Returns
SSH_OK if the directory has been created, SSH_ERROR if an error occurred.
See also
ssh_scp_leave_directory()

◆ ssh_scp_push_file()

int ssh_scp_push_file ( ssh_scp scp,
const char * filename,
size_t size,
int mode )

Initialize the sending of a file to a scp in sink mode.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[in]filenameThe name of the file being sent. It should not contain any path indicator
[in]sizeExact size in bytes of the file being sent.
[in]modeThe UNIX permissions for the new file, e.g. 0644.
Returns
SSH_OK if the file is ready to be sent, SSH_ERROR if an error occurred.

◆ ssh_scp_push_file64()

int ssh_scp_push_file64 ( ssh_scp scp,
const char * filename,
uint64_t size,
int mode )

Initialize the sending of a file to a scp in sink mode, using a 64-bit size.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[in]filenameThe name of the file being sent. It should not contain any path indicator
[in]sizeExact size in bytes of the file being sent.
[in]modeThe UNIX permissions for the new file, e.g. 0644.
Returns
SSH_OK if the file is ready to be sent, SSH_ERROR if an error occurred.
See also
ssh_scp_push_file()

◆ ssh_scp_read()

int ssh_scp_read ( ssh_scp scp,
void * buffer,
size_t size )

Read from a remote scp file.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[in]bufferThe destination buffer.
[in]sizeThe size of the buffer.
Returns
The number of bytes read, SSH_ERROR if an error occurred while reading.

◆ ssh_scp_read_string()

int ssh_scp_read_string ( ssh_scp scp,
char * buffer,
size_t len )

Read a string on a channel, terminated by '
'.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[out]bufferA pointer to a buffer to place the string.
[in]lenThe size of the buffer in bytes. If the string is bigger than len-1, only len-1 bytes are read and the string is null-terminated.
Returns
SSH_OK if the string was read, SSH_ERROR if an error occurred while reading.

◆ ssh_scp_request_get_filename()

const char * ssh_scp_request_get_filename ( ssh_scp scp)

Get the name of the directory or file being pushed from the other party.

Deprecated
Please use SFTP instead
Returns
The file name, NULL on error. The string should not be freed.

◆ ssh_scp_request_get_permissions()

int ssh_scp_request_get_permissions ( ssh_scp scp)

Get the permissions of the directory or file being pushed from the other party.

Deprecated
Please use SFTP instead
Returns
The UNIX permission, e.g 0644, -1 on error.

◆ ssh_scp_request_get_size()

size_t ssh_scp_request_get_size ( ssh_scp scp)

Get the size of the file being pushed from the other party.

Deprecated
Please use SFTP instead
Returns
The numeric size of the file being read.
Warning
The real size may not fit in a 32 bits field and may be truncated.
See also
ssh_scp_request_get_size64()

◆ ssh_scp_request_get_size64()

uint64_t ssh_scp_request_get_size64 ( ssh_scp scp)

Get the size of the file being pushed from the other party.

Deprecated
Please use SFTP instead
Returns
The numeric size of the file being read.

◆ ssh_scp_request_get_warning()

const char * ssh_scp_request_get_warning ( ssh_scp scp)

Get the warning string from a scp handle.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
Returns
A warning string, or NULL on error. The string should not be freed.

◆ ssh_scp_string_mode()

char * ssh_scp_string_mode ( int mode)

Convert a unix mode into a scp string.

Deprecated
Please use SFTP instead
Parameters
[in]modeThe mode to convert, e.g. 420 or 0644.
Returns
A pointer to a malloc'ed string containing the scp mode, e.g. "0644".

◆ ssh_scp_write()

int ssh_scp_write ( ssh_scp scp,
const void * buffer,
size_t len )

Write into a remote scp file.

Deprecated
Please use SFTP instead
Parameters
[in]scpThe scp handle.
[in]bufferThe buffer to write.
[in]lenThe number of bytes to write.
Returns
SSH_OK if the write was successful, SSH_ERROR an error occurred while writing.