summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
authordjm <djm>2002-02-08 11:04:05 +0000
committerdjm <djm>2002-02-08 11:04:05 +0000
commit41c23b95b8f57a87a6455ce2b2593c40472efec5 (patch)
tree477d56edf7e3a8705fbe612edbd6e01838188f7a /sftp-client.h
parent1c37b8c9a137e0c64a714f765297190d0b82af1c (diff)
downloadopenssh-41c23b95b8f57a87a6455ce2b2593c40472efec5.tar.gz
- djm@cvs.openbsd.org 2002/02/05 00:00:46
[sftp.1 sftp.c sftp-client.c sftp-client.h sftp-int.c] Add "-B" option to specify copy buffer length (default 32k); ok markus@
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sftp-client.h b/sftp-client.h
index a322b257..20350701 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: sftp-client.h,v 1.6 2001/06/26 06:33:01 itojun Exp $ */
+/* $OpenBSD: sftp-client.h,v 1.7 2002/02/05 00:00:46 djm Exp $ */
/*
- * Copyright (c) 2001 Damien Miller. All rights reserved.
+ * Copyright (c) 2001-2002 Damien Miller. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -94,10 +94,10 @@ char *do_readlink(int, int, char *);
* Download 'remote_path' to 'local_path'. Preserve permissions and times
* if 'pflag' is set
*/
-int do_download(int, int, char *, char *, int);
+int do_download(int, int, char *, char *, int, size_t);
/*
* Upload 'local_path' to 'remote_path'. Preserve permissions and times
* if 'pflag' is set
*/
-int do_upload(int, int, char *, char *, int);
+int do_upload(int, int, char *, char *, int , size_t);