summaryrefslogtreecommitdiff
path: root/sftp-client.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-17 00:34:46 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-17 00:34:46 +0000
commitc8d1c30c312003ecbeba9a383f0a61ed45ad0c04 (patch)
treede4f4b94c8d94f24164b03ea6e114d02e81d216a /sftp-client.h
parent86fe8686b920b7da020b96aaf2303a7b596c36a4 (diff)
- djm@cvs.openbsd.org 2001/03/16 08:16:18
[sftp-client.c sftp-client.h sftp-glob.c sftp-int.c] Revise globbing for get/put to be more shell-like. In particular, "get/put file* directory/" now works. ok markus@
Diffstat (limited to 'sftp-client.h')
-rw-r--r--sftp-client.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sftp-client.h b/sftp-client.h
index e7ba02ad6..a935736e3 100644
--- a/sftp-client.h
+++ b/sftp-client.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.h,v 1.3 2001/03/13 22:42:54 djm Exp $ */ 1/* $OpenBSD: sftp-client.h,v 1.4 2001/03/16 08:16:18 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001 Damien Miller. All rights reserved. 4 * Copyright (c) 2001 Damien Miller. All rights reserved.
@@ -62,14 +62,14 @@ int do_mkdir(int fd_in, int fd_out, char *path, Attrib *a);
62int do_rmdir(int fd_in, int fd_out, char *path); 62int do_rmdir(int fd_in, int fd_out, char *path);
63 63
64/* Get file attributes of 'path' (follows symlinks) */ 64/* Get file attributes of 'path' (follows symlinks) */
65Attrib *do_stat(int fd_in, int fd_out, char *path); 65Attrib *do_stat(int fd_in, int fd_out, char *path, int quiet);
66 66
67/* Get file attributes of 'path' (does not follow symlinks) */ 67/* Get file attributes of 'path' (does not follow symlinks) */
68Attrib *do_lstat(int fd_in, int fd_out, char *path); 68Attrib *do_lstat(int fd_in, int fd_out, char *path, int quiet);
69 69
70/* Get file attributes of open file 'handle' */ 70/* Get file attributes of open file 'handle' */
71Attrib *do_fstat(int fd_in, int fd_out, char *handle, 71Attrib *do_fstat(int fd_in, int fd_out, char *handle, u_int handle_len,
72 u_int handle_len); 72 int quiet);
73 73
74/* Set file attributes of 'path' */ 74/* Set file attributes of 'path' */
75int do_setstat(int fd_in, int fd_out, char *path, Attrib *a); 75int do_setstat(int fd_in, int fd_out, char *path, Attrib *a);