summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sftp-client.h b/sftp-client.h
index fd0630e9a..b102e1180 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.h,v 1.15 2008/01/11 07:22:28 chl Exp $ */ 1/* $OpenBSD: sftp-client.h,v 1.16 2008/04/18 12:32:11 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 4 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
@@ -70,6 +70,10 @@ int do_fsetstat(struct sftp_conn *, char *, u_int, Attrib *);
70/* Canonicalise 'path' - caller must free result */ 70/* Canonicalise 'path' - caller must free result */
71char *do_realpath(struct sftp_conn *, char *); 71char *do_realpath(struct sftp_conn *, char *);
72 72
73/* Get statistics for filesystem hosting file at "path" */
74struct statvfs;
75int do_statvfs(struct sftp_conn *, const char *, struct statvfs *, int);
76
73/* Rename 'oldpath' to 'newpath' */ 77/* Rename 'oldpath' to 'newpath' */
74int do_rename(struct sftp_conn *, char *, char *); 78int do_rename(struct sftp_conn *, char *, char *);
75 79