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