]> andersk Git - gssapi-openssh.git/blame - openssh/sftp-client.h
Import of OpenSSH 4.9p1
[gssapi-openssh.git] / openssh / sftp-client.h
CommitLineData
47686178 1/* $OpenBSD: sftp-client.h,v 1.15 2008/01/11 07:22:28 chl Exp $ */
3c0ef626 2
3/*
cdd66111 4 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
3c0ef626 5 *
cdd66111 6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
3c0ef626 9 *
cdd66111 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3c0ef626 17 */
18
19/* Client side of SSH2 filexfer protocol */
20
e9a17296 21#ifndef _SFTP_CLIENT_H
22#define _SFTP_CLIENT_H
23
3c0ef626 24typedef struct SFTP_DIRENT SFTP_DIRENT;
25
26struct SFTP_DIRENT {
27 char *filename;
28 char *longname;
29 Attrib a;
30};
31
32/*
665a873d 33 * Initialise a SSH filexfer connection. Returns NULL on error or
996d5e62 34 * a pointer to a initialized sftp_conn struct on success.
3c0ef626 35 */
680cee3b 36struct sftp_conn *do_init(int, int, u_int, u_int);
e9a17296 37
680cee3b 38u_int sftp_proto_version(struct sftp_conn *);
3c0ef626 39
40/* Close file referred to by 'handle' */
e9a17296 41int do_close(struct sftp_conn *, char *, u_int);
3c0ef626 42
3c0ef626 43/* Read contents of 'path' to NULL-terminated array 'dir' */
e9a17296 44int do_readdir(struct sftp_conn *, char *, SFTP_DIRENT ***);
3c0ef626 45
46/* Frees a NULL-terminated array of SFTP_DIRENTs (eg. from do_readdir) */
47void free_sftp_dirents(SFTP_DIRENT **);
48
49/* Delete file 'path' */
e9a17296 50int do_rm(struct sftp_conn *, char *);
3c0ef626 51
52/* Create directory 'path' */
e9a17296 53int do_mkdir(struct sftp_conn *, char *, Attrib *);
3c0ef626 54
55/* Remove directory 'path' */
e9a17296 56int do_rmdir(struct sftp_conn *, char *);
3c0ef626 57
58/* Get file attributes of 'path' (follows symlinks) */
e9a17296 59Attrib *do_stat(struct sftp_conn *, char *, int);
3c0ef626 60
61/* Get file attributes of 'path' (does not follow symlinks) */
e9a17296 62Attrib *do_lstat(struct sftp_conn *, char *, int);
3c0ef626 63
3c0ef626 64/* Set file attributes of 'path' */
e9a17296 65int do_setstat(struct sftp_conn *, char *, Attrib *);
3c0ef626 66
67/* Set file attributes of open file 'handle' */
e9a17296 68int do_fsetstat(struct sftp_conn *, char *, u_int, Attrib *);
3c0ef626 69
70/* Canonicalise 'path' - caller must free result */
e9a17296 71char *do_realpath(struct sftp_conn *, char *);
3c0ef626 72
73/* Rename 'oldpath' to 'newpath' */
e9a17296 74int do_rename(struct sftp_conn *, char *, char *);
3c0ef626 75
76/* Rename 'oldpath' to 'newpath' */
e9a17296 77int do_symlink(struct sftp_conn *, char *, char *);
3c0ef626 78
3c0ef626 79/* XXX: add callbacks to do_download/do_upload so we can do progress meter */
80
81/*
82 * Download 'remote_path' to 'local_path'. Preserve permissions and times
83 * if 'pflag' is set
84 */
e9a17296 85int do_download(struct sftp_conn *, char *, char *, int);
3c0ef626 86
87/*
88 * Upload 'local_path' to 'remote_path'. Preserve permissions and times
89 * if 'pflag' is set
90 */
e9a17296 91int do_upload(struct sftp_conn *, char *, char *, int);
92
93#endif
This page took 0.0655 seconds and 5 git commands to generate.