source: trunk/third/openssh/sftp-client.h @ 16801

Revision 16801, 3.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16800, which included commits to RCS files with non-trunk default branches.
Line 
1/* $OpenBSD: sftp-client.h,v 1.6 2001/06/26 06:33:01 itojun Exp $ */
2
3/*
4 * Copyright (c) 2001 Damien Miller.  All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27/* Client side of SSH2 filexfer protocol */
28
29typedef struct SFTP_DIRENT SFTP_DIRENT;
30
31struct SFTP_DIRENT {
32        char *filename;
33        char *longname;
34        Attrib a;
35};
36
37/*
38 * Initialiase a SSH filexfer connection. Returns -1 on error or
39 * protocol version on success.
40 */
41int do_init(int, int);
42
43/* Close file referred to by 'handle' */
44int do_close(int, int, char *, u_int);
45
46/* List contents of directory 'path' to stdout */
47int do_ls(int, int, char *);
48
49/* Read contents of 'path' to NULL-terminated array 'dir' */
50int do_readdir(int, int, char *, SFTP_DIRENT ***);
51
52/* Frees a NULL-terminated array of SFTP_DIRENTs (eg. from do_readdir) */
53void free_sftp_dirents(SFTP_DIRENT **);
54
55/* Delete file 'path' */
56int do_rm(int, int, char *);
57
58/* Create directory 'path' */
59int do_mkdir(int, int, char *, Attrib *);
60
61/* Remove directory 'path' */
62int do_rmdir(int, int, char *);
63
64/* Get file attributes of 'path' (follows symlinks) */
65Attrib *do_stat(int, int, char *, int);
66
67/* Get file attributes of 'path' (does not follow symlinks) */
68Attrib *do_lstat(int, int, char *, int);
69
70/* Get file attributes of open file 'handle' */
71Attrib *do_fstat(int, int, char *, u_int, int);
72
73/* Set file attributes of 'path' */
74int do_setstat(int, int, char *, Attrib *);
75
76/* Set file attributes of open file 'handle' */
77int do_fsetstat(int, int, char *, u_int, Attrib *);
78
79/* Canonicalise 'path' - caller must free result */
80char *do_realpath(int, int, char *);
81
82/* Rename 'oldpath' to 'newpath' */
83int do_rename(int, int, char *, char *);
84
85/* Rename 'oldpath' to 'newpath' */
86int do_symlink(int, int, char *, char *);
87
88/* Return target of symlink 'path' - caller must free result */
89char *do_readlink(int, int, char *);
90
91/* XXX: add callbacks to do_download/do_upload so we can do progress meter */
92
93/*
94 * Download 'remote_path' to 'local_path'. Preserve permissions and times
95 * if 'pflag' is set
96 */
97int do_download(int, int, char *, char *, int);
98
99/*
100 * Upload 'local_path' to 'remote_path'. Preserve permissions and times
101 * if 'pflag' is set
102 */
103int do_upload(int, int, char *, char *, int);
Note: See TracBrowser for help on using the repository browser.