From f3454d571e53358b248fd7071828f6cc13f1f2f5 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Sun, 23 Aug 2009 23:40:30 +0200 Subject: ssh_scp_request_get_{filename,permissions,size} --- libssh/scp.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'libssh') diff --git a/libssh/scp.c b/libssh/scp.c index 2c89147..5bcfdd9 100644 --- a/libssh/scp.c +++ b/libssh/scp.c @@ -459,3 +459,27 @@ int ssh_scp_read(ssh_scp scp, void *buffer, size_t size){ } return r; } + +/** Gets the name of the directory or file being + * pushed from the other party + * @returns file name. Should not be freed. + */ +const char *ssh_scp_request_get_filename(ssh_scp scp){ + return scp->request_name; +} + +/** Gets the permissions of the directory or file being + * pushed from the other party + * @returns Unix permission string, e.g "0644". Should not be freed. + */ +const char *ssh_scp_request_get_permissions(ssh_scp scp){ + return scp->request_mode; +} + +/** Gets the size of the file being pushed + * from the other party + * @returns Numeric size of the file being read. + */ +size_t ssh_scp_request_get_size(ssh_scp scp){ + return scp->filelen; +} -- cgit