]> andersk Git - openssh.git/blame - sftp-client.h
- (bal) Missed msg.[ch] in merge. Required for ssh-keysign.
[openssh.git] / sftp-client.h
CommitLineData
22e6c827 1/* $OpenBSD: sftp-client.h,v 1.9 2002/02/13 00:59:23 djm Exp $ */
61e96248 2
3/*
22e6c827 4 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
61e96248 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
22e6c827 29#ifndef _SFTP_CLIENT_H
30#define _SFTP_CLIENT_H
31
2e4fb373 32typedef struct SFTP_DIRENT SFTP_DIRENT;
33
34struct SFTP_DIRENT {
35 char *filename;
36 char *longname;
37 Attrib a;
38};
39
cd332296 40/*
41 * Initialiase a SSH filexfer connection. Returns -1 on error or
3a7fe5ba 42 * protocol version on success.
43 */
22e6c827 44struct sftp_conn *
45do_init(int, int, u_int, u_int);
46
47u_int
48sftp_proto_version(struct sftp_conn *);
61e96248 49
50/* Close file referred to by 'handle' */
22e6c827 51int do_close(struct sftp_conn *, char *, u_int);
61e96248 52
53/* List contents of directory 'path' to stdout */
22e6c827 54int do_ls(struct sftp_conn *, char *);
61e96248 55
2e4fb373 56/* Read contents of 'path' to NULL-terminated array 'dir' */
22e6c827 57int do_readdir(struct sftp_conn *, char *, SFTP_DIRENT ***);
2e4fb373 58
59/* Frees a NULL-terminated array of SFTP_DIRENTs (eg. from do_readdir) */
1c06a9ca 60void free_sftp_dirents(SFTP_DIRENT **);
2e4fb373 61
61e96248 62/* Delete file 'path' */
22e6c827 63int do_rm(struct sftp_conn *, char *);
61e96248 64
65/* Create directory 'path' */
22e6c827 66int do_mkdir(struct sftp_conn *, char *, Attrib *);
61e96248 67
68/* Remove directory 'path' */
22e6c827 69int do_rmdir(struct sftp_conn *, char *);
61e96248 70
71/* Get file attributes of 'path' (follows symlinks) */
22e6c827 72Attrib *do_stat(struct sftp_conn *, char *, int);
61e96248 73
74/* Get file attributes of 'path' (does not follow symlinks) */
22e6c827 75Attrib *do_lstat(struct sftp_conn *, char *, int);
61e96248 76
77/* Get file attributes of open file 'handle' */
22e6c827 78Attrib *do_fstat(struct sftp_conn *, char *, u_int, int);
61e96248 79
80/* Set file attributes of 'path' */
22e6c827 81int do_setstat(struct sftp_conn *, char *, Attrib *);
61e96248 82
83/* Set file attributes of open file 'handle' */
22e6c827 84int do_fsetstat(struct sftp_conn *, char *, u_int, Attrib *);
61e96248 85
86/* Canonicalise 'path' - caller must free result */
22e6c827 87char *do_realpath(struct sftp_conn *, char *);
61e96248 88
89/* Rename 'oldpath' to 'newpath' */
22e6c827 90int do_rename(struct sftp_conn *, char *, char *);
61e96248 91
3a7fe5ba 92/* Rename 'oldpath' to 'newpath' */
22e6c827 93int do_symlink(struct sftp_conn *, char *, char *);
3a7fe5ba 94
95/* Return target of symlink 'path' - caller must free result */
22e6c827 96char *do_readlink(struct sftp_conn *, char *);
3a7fe5ba 97
61e96248 98/* XXX: add callbacks to do_download/do_upload so we can do progress meter */
99
100/*
101 * Download 'remote_path' to 'local_path'. Preserve permissions and times
102 * if 'pflag' is set
103 */
22e6c827 104int do_download(struct sftp_conn *, char *, char *, int);
61e96248 105
106/*
107 * Upload 'local_path' to 'remote_path'. Preserve permissions and times
108 * if 'pflag' is set
109 */
22e6c827 110int do_upload(struct sftp_conn *, char *, char *, int);
111
112#endif
This page took 0.147407 seconds and 5 git commands to generate.