summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-02-10 22:20:44 +1100
committerDamien Miller <djm@mindrot.org>2008-02-10 22:20:44 +1100
commitcfe23d34e441114c59db43e672e57f9840475e32 (patch)
tree3dc29497429930f7571ebe5248336bc766440d91 /sftp-client.h
parent49d2a2826aec4c0aba41ea76b1bb7fa446d6fd55 (diff)
- chl@cvs.openbsd.org 2008/01/11 07:22:28
[sftp-client.c sftp-client.h] disable unused functions initially from tobias@, but disabled them by placing them in "#ifdef notyet" which was asked by djm@ ok djm@ tobias@
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/sftp-client.h b/sftp-client.h
index c8a41f377..fd0630e9a 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.h,v 1.14 2005/04/26 12:59:02 jmc Exp $ */ 1/* $OpenBSD: sftp-client.h,v 1.15 2008/01/11 07:22:28 chl 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>
@@ -61,9 +61,6 @@ Attrib *do_stat(struct sftp_conn *, char *, int);
61/* Get file attributes of 'path' (does not follow symlinks) */ 61/* Get file attributes of 'path' (does not follow symlinks) */
62Attrib *do_lstat(struct sftp_conn *, char *, int); 62Attrib *do_lstat(struct sftp_conn *, char *, int);
63 63
64/* Get file attributes of open file 'handle' */
65Attrib *do_fstat(struct sftp_conn *, char *, u_int, int);
66
67/* Set file attributes of 'path' */ 64/* Set file attributes of 'path' */
68int do_setstat(struct sftp_conn *, char *, Attrib *); 65int do_setstat(struct sftp_conn *, char *, Attrib *);
69 66
@@ -79,9 +76,6 @@ int do_rename(struct sftp_conn *, char *, char *);
79/* Rename 'oldpath' to 'newpath' */ 76/* Rename 'oldpath' to 'newpath' */
80int do_symlink(struct sftp_conn *, char *, char *); 77int do_symlink(struct sftp_conn *, char *, char *);
81 78
82/* Return target of symlink 'path' - caller must free result */
83char *do_readlink(struct sftp_conn *, char *);
84
85/* XXX: add callbacks to do_download/do_upload so we can do progress meter */ 79/* XXX: add callbacks to do_download/do_upload so we can do progress meter */
86 80
87/* 81/*