summaryrefslogtreecommitdiffstats
path: root/include/libssh/libssh.h
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-08-23 23:40:30 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-08-23 23:40:30 +0200
commitf3454d571e53358b248fd7071828f6cc13f1f2f5 (patch)
tree6fbda8852f1c62db44350edec6f0782e3b884e7c /include/libssh/libssh.h
parent1df1f86f7e1b2e28610ba338bb7898d55e8bd7ce (diff)
downloadlibssh-f3454d571e53358b248fd7071828f6cc13f1f2f5.tar.gz
libssh-f3454d571e53358b248fd7071828f6cc13f1f2f5.tar.xz
libssh-f3454d571e53358b248fd7071828f6cc13f1f2f5.zip
ssh_scp_request_get_{filename,permissions,size}
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r--include/libssh/libssh.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index f7896fb2..c36b7fc6 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -487,6 +487,9 @@ LIBSSH_API int ssh_scp_pull_request(ssh_scp scp);
LIBSSH_API int ssh_scp_deny_request(ssh_scp scp, const char *reason);
LIBSSH_API int ssh_scp_accept_request(ssh_scp scp);
LIBSSH_API int ssh_scp_read(ssh_scp scp, void *buffer, size_t size);
+LIBSSH_API const char *ssh_scp_request_get_filename(ssh_scp scp);
+LIBSSH_API const char *ssh_scp_request_get_permissions(ssh_scp scp);
+LIBSSH_API size_t ssh_scp_request_get_size(ssh_scp scp);
#ifdef __cplusplus