summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-13 14:03:56 +1100
committerDamien Miller <djm@mindrot.org>2002-02-13 14:03:56 +1100
commit16a133339a40396064effee3de55f6b2a887d3d2 (patch)
tree6369f7bf93f345d8da84e8a2adbaf8ec475593a1 /sftp-client.h
parentafc7a5d7741ad59a2efe2db6b928c89bf0928098 (diff)
- djm@cvs.openbsd.org 2002/02/12 12:32:27
[sftp.1 sftp.c sftp-client.c sftp-client.h sftp-int.c] Perform multiple overlapping read/write requests in file transfer. Mostly done by Tobias Ringstrom <tori@ringstrom.mine.nu>; ok markus@
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sftp-client.h b/sftp-client.h
index 20350701c..477c8ed3b 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.h,v 1.7 2002/02/05 00:00:46 djm Exp $ */ 1/* $OpenBSD: sftp-client.h,v 1.8 2002/02/12 12:32:27 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001-2002 Damien Miller. All rights reserved. 4 * Copyright (c) 2001-2002 Damien Miller. All rights reserved.
@@ -94,10 +94,10 @@ char *do_readlink(int, int, char *);
94 * Download 'remote_path' to 'local_path'. Preserve permissions and times 94 * Download 'remote_path' to 'local_path'. Preserve permissions and times
95 * if 'pflag' is set 95 * if 'pflag' is set
96 */ 96 */
97int do_download(int, int, char *, char *, int, size_t); 97int do_download(int, int, char *, char *, int, size_t, int);
98 98
99/* 99/*
100 * Upload 'local_path' to 'remote_path'. Preserve permissions and times 100 * Upload 'local_path' to 'remote_path'. Preserve permissions and times
101 * if 'pflag' is set 101 * if 'pflag' is set
102 */ 102 */
103int do_upload(int, int, char *, char *, int , size_t); 103int do_upload(int, int, char *, char *, int , size_t, int);