libssh  0.10.6
The SSH library
Loading...
Searching...
No Matches
sftp.h
1/*
2 * This file is part of the SSH Library
3 *
4 * Copyright (c) 2003-2008 by Aris Adamantiadis
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
37#ifndef SFTP_H
38#define SFTP_H
39
40#include <sys/types.h>
41
42#include "libssh.h"
43
44#ifdef __cplusplus
45extern "C" {
46#endif
47
48#ifdef _WIN32
49#ifndef uid_t
50 typedef uint32_t uid_t;
51#endif /* uid_t */
52#ifndef gid_t
53 typedef uint32_t gid_t;
54#endif /* gid_t */
55#ifdef _MSC_VER
56
57# ifndef _SSIZE_T_DEFINED
58# undef ssize_t
59# include <BaseTsd.h>
60 typedef _W64 SSIZE_T ssize_t;
61# define _SSIZE_T_DEFINED
62# endif /* _SSIZE_T_DEFINED */
63
64#endif /* _MSC_VER */
65#endif /* _WIN32 */
66
67#define LIBSFTP_VERSION 3
68
71typedef struct sftp_dir_struct* sftp_dir;
72typedef struct sftp_ext_struct *sftp_ext;
73typedef struct sftp_file_struct* sftp_file;
74typedef struct sftp_message_struct* sftp_message;
75typedef struct sftp_packet_struct* sftp_packet;
77typedef struct sftp_session_struct* sftp_session;
80
82 ssh_session session;
83 ssh_channel channel;
84 int server_version;
85 int client_version;
86 int version;
88 uint32_t id_counter;
89 int errnum;
90 void **handles;
91 sftp_ext ext;
92 sftp_packet read_packet;
93 struct ssh_list *outstanding_ids;
94};
95
97 sftp_session sftp;
98 uint8_t type;
99 ssh_buffer payload;
100};
101
102/* file handler */
104 sftp_session sftp;
105 char *name;
106 uint64_t offset;
107 ssh_string handle;
108 int eof;
109 int nonblocking;
110};
111
113 sftp_session sftp;
114 char *name;
115 ssh_string handle; /* handle to directory */
116 ssh_buffer buffer; /* contains raw attributes from server which haven't been parsed */
117 uint32_t count; /* counts the number of following attributes structures into buffer */
118 int eof; /* end of directory listing */
119};
120
122 sftp_session sftp;
123 uint8_t packet_type;
124 ssh_buffer payload;
125 uint32_t id;
126};
127
128/* this is a bunch of all data that could be into a message */
130 sftp_session sftp;
131 uint8_t type;
132 uint32_t id;
133 char *filename; /* can be "path" */
134 uint32_t flags;
135 sftp_attributes attr;
136 ssh_string handle;
137 uint64_t offset;
138 uint32_t len;
139 int attr_num;
140 ssh_buffer attrbuf; /* used by sftp_reply_attrs */
141 ssh_string data; /* can be newpath of rename() */
142 ssh_buffer complete_message; /* complete message in case of retransmission*/
143 char *str_data; /* cstring version of data */
144 char *submessage; /* for extended messages */
145};
146
149 sftp_message message;
150};
151
152/* SSH_FXP_MESSAGE described into .7 page 26 */
154 uint32_t id;
155 uint32_t status;
156 ssh_string error_unused; /* not used anymore */
157 ssh_string lang_unused; /* not used anymore */
158 char *errormsg;
159 char *langmsg;
160};
161
163 char *name;
164 char *longname; /* ls -l output on openssh, not reliable else */
165 uint32_t flags;
166 uint8_t type;
167 uint64_t size;
168 uint32_t uid;
169 uint32_t gid;
170 char *owner; /* set if openssh and version 4 */
171 char *group; /* set if openssh and version 4 */
172 uint32_t permissions;
173 uint64_t atime64;
174 uint32_t atime;
175 uint32_t atime_nseconds;
176 uint64_t createtime;
177 uint32_t createtime_nseconds;
178 uint64_t mtime64;
179 uint32_t mtime;
180 uint32_t mtime_nseconds;
181 ssh_string acl;
182 uint32_t extended_count;
183 ssh_string extended_type;
184 ssh_string extended_data;
185};
186
191 uint64_t f_bsize;
192 uint64_t f_frsize;
193 uint64_t f_blocks;
194 uint64_t f_bfree;
195 uint64_t f_bavail;
196 uint64_t f_files;
197 uint64_t f_ffree;
198 uint64_t f_favail;
199 uint64_t f_fsid;
200 uint64_t f_flag;
201 uint64_t f_namemax;
202};
203
218LIBSSH_API sftp_session sftp_new(ssh_session session);
219
230LIBSSH_API sftp_session sftp_new_channel(ssh_session session, ssh_channel channel);
231
232
238LIBSSH_API void sftp_free(sftp_session sftp);
239
252LIBSSH_API int sftp_init(sftp_session sftp);
253
266LIBSSH_API int sftp_get_error(sftp_session sftp);
267
276LIBSSH_API unsigned int sftp_extensions_get_count(sftp_session sftp);
277
287LIBSSH_API const char *sftp_extensions_get_name(sftp_session sftp, unsigned int indexn);
288
300LIBSSH_API const char *sftp_extensions_get_data(sftp_session sftp, unsigned int indexn);
301
319LIBSSH_API int sftp_extension_supported(sftp_session sftp, const char *name,
320 const char *data);
321
334LIBSSH_API sftp_dir sftp_opendir(sftp_session session, const char *path);
335
349LIBSSH_API sftp_attributes sftp_readdir(sftp_session session, sftp_dir dir);
350
360LIBSSH_API int sftp_dir_eof(sftp_dir dir);
361
374LIBSSH_API sftp_attributes sftp_stat(sftp_session session, const char *path);
375
391LIBSSH_API sftp_attributes sftp_lstat(sftp_session session, const char *path);
392
403LIBSSH_API sftp_attributes sftp_fstat(sftp_file file);
404
410LIBSSH_API void sftp_attributes_free(sftp_attributes file);
411
419LIBSSH_API int sftp_closedir(sftp_dir dir);
420
430LIBSSH_API int sftp_close(sftp_file file);
431
460LIBSSH_API sftp_file sftp_open(sftp_session session, const char *file, int accesstype,
461 mode_t mode);
462
468LIBSSH_API void sftp_file_set_nonblocking(sftp_file handle);
469
475LIBSSH_API void sftp_file_set_blocking(sftp_file handle);
476
491LIBSSH_API ssize_t sftp_read(sftp_file file, void *buf, size_t count);
492
524LIBSSH_API int sftp_async_read_begin(sftp_file file, uint32_t len);
525
549LIBSSH_API int sftp_async_read(sftp_file file, void *data, uint32_t len, uint32_t id);
550
567LIBSSH_API ssize_t sftp_write(sftp_file file, const void *buf, size_t count);
568
578LIBSSH_API int sftp_seek(sftp_file file, uint32_t new_offset);
579
590LIBSSH_API int sftp_seek64(sftp_file file, uint64_t new_offset);
591
601LIBSSH_API unsigned long sftp_tell(sftp_file file);
602
612LIBSSH_API uint64_t sftp_tell64(sftp_file file);
613
620LIBSSH_API void sftp_rewind(sftp_file file);
621
633LIBSSH_API int sftp_unlink(sftp_session sftp, const char *file);
634
646LIBSSH_API int sftp_rmdir(sftp_session sftp, const char *directory);
647
663LIBSSH_API int sftp_mkdir(sftp_session sftp, const char *directory, mode_t mode);
664
680LIBSSH_API int sftp_rename(sftp_session sftp, const char *original, const char *newname);
681
701LIBSSH_API int sftp_setstat(sftp_session sftp, const char *file, sftp_attributes attr);
702
718LIBSSH_API int sftp_chown(sftp_session sftp, const char *file, uid_t owner, gid_t group);
719
735LIBSSH_API int sftp_chmod(sftp_session sftp, const char *file, mode_t mode);
736
751LIBSSH_API int sftp_utimes(sftp_session sftp, const char *file, const struct timeval *times);
752
766LIBSSH_API int sftp_symlink(sftp_session sftp, const char *target, const char *dest);
767
781LIBSSH_API char *sftp_readlink(sftp_session sftp, const char *path);
782
794LIBSSH_API sftp_statvfs_t sftp_statvfs(sftp_session sftp, const char *path);
795
805LIBSSH_API sftp_statvfs_t sftp_fstatvfs(sftp_file file);
806
812LIBSSH_API void sftp_statvfs_free(sftp_statvfs_t statvfs_o);
813
828LIBSSH_API int sftp_fsync(sftp_file file);
829
841LIBSSH_API char *sftp_canonicalize_path(sftp_session sftp, const char *path);
842
850LIBSSH_API int sftp_server_version(sftp_session sftp);
851
852#ifdef WITH_SERVER
862LIBSSH_API sftp_session sftp_server_new(ssh_session session, ssh_channel chan);
863
871LIBSSH_API int sftp_server_init(sftp_session sftp);
872
878LIBSSH_API void sftp_server_free(sftp_session sftp);
879#endif /* WITH_SERVER */
880
881/* sftpserver.c */
882
883LIBSSH_API sftp_client_message sftp_get_client_message(sftp_session sftp);
884LIBSSH_API void sftp_client_message_free(sftp_client_message msg);
885LIBSSH_API uint8_t sftp_client_message_get_type(sftp_client_message msg);
886LIBSSH_API const char *sftp_client_message_get_filename(sftp_client_message msg);
887LIBSSH_API void sftp_client_message_set_filename(sftp_client_message msg, const char *newname);
888LIBSSH_API const char *sftp_client_message_get_data(sftp_client_message msg);
889LIBSSH_API uint32_t sftp_client_message_get_flags(sftp_client_message msg);
890LIBSSH_API const char *sftp_client_message_get_submessage(sftp_client_message msg);
891LIBSSH_API int sftp_send_client_message(sftp_session sftp, sftp_client_message msg);
892LIBSSH_API int sftp_reply_name(sftp_client_message msg, const char *name,
893 sftp_attributes attr);
894LIBSSH_API int sftp_reply_handle(sftp_client_message msg, ssh_string handle);
895LIBSSH_API ssh_string sftp_handle_alloc(sftp_session sftp, void *info);
896LIBSSH_API int sftp_reply_attr(sftp_client_message msg, sftp_attributes attr);
897LIBSSH_API void *sftp_handle(sftp_session sftp, ssh_string handle);
898LIBSSH_API int sftp_reply_status(sftp_client_message msg, uint32_t status, const char *message);
899LIBSSH_API int sftp_reply_names_add(sftp_client_message msg, const char *file,
900 const char *longname, sftp_attributes attr);
901LIBSSH_API int sftp_reply_names(sftp_client_message msg);
902LIBSSH_API int sftp_reply_data(sftp_client_message msg, const void *data, int len);
903LIBSSH_API void sftp_handle_remove(sftp_session sftp, void *handle);
904
905/* SFTP commands and constants */
906#define SSH_FXP_INIT 1
907#define SSH_FXP_VERSION 2
908#define SSH_FXP_OPEN 3
909#define SSH_FXP_CLOSE 4
910#define SSH_FXP_READ 5
911#define SSH_FXP_WRITE 6
912#define SSH_FXP_LSTAT 7
913#define SSH_FXP_FSTAT 8
914#define SSH_FXP_SETSTAT 9
915#define SSH_FXP_FSETSTAT 10
916#define SSH_FXP_OPENDIR 11
917#define SSH_FXP_READDIR 12
918#define SSH_FXP_REMOVE 13
919#define SSH_FXP_MKDIR 14
920#define SSH_FXP_RMDIR 15
921#define SSH_FXP_REALPATH 16
922#define SSH_FXP_STAT 17
923#define SSH_FXP_RENAME 18
924#define SSH_FXP_READLINK 19
925#define SSH_FXP_SYMLINK 20
926
927#define SSH_FXP_STATUS 101
928#define SSH_FXP_HANDLE 102
929#define SSH_FXP_DATA 103
930#define SSH_FXP_NAME 104
931#define SSH_FXP_ATTRS 105
932
933#define SSH_FXP_EXTENDED 200
934#define SSH_FXP_EXTENDED_REPLY 201
935
936/* attributes */
937/* sftp draft is completely braindead : version 3 and 4 have different flags for same constants */
938/* and even worst, version 4 has same flag for 2 different constants */
939/* follow up : i won't develop any sftp4 compliant library before having a clarification */
940
941#define SSH_FILEXFER_ATTR_SIZE 0x00000001
942#define SSH_FILEXFER_ATTR_PERMISSIONS 0x00000004
943#define SSH_FILEXFER_ATTR_ACCESSTIME 0x00000008
944#define SSH_FILEXFER_ATTR_ACMODTIME 0x00000008
945#define SSH_FILEXFER_ATTR_CREATETIME 0x00000010
946#define SSH_FILEXFER_ATTR_MODIFYTIME 0x00000020
947#define SSH_FILEXFER_ATTR_ACL 0x00000040
948#define SSH_FILEXFER_ATTR_OWNERGROUP 0x00000080
949#define SSH_FILEXFER_ATTR_SUBSECOND_TIMES 0x00000100
950#define SSH_FILEXFER_ATTR_EXTENDED 0x80000000
951#define SSH_FILEXFER_ATTR_UIDGID 0x00000002
952
953/* types */
954#define SSH_FILEXFER_TYPE_REGULAR 1
955#define SSH_FILEXFER_TYPE_DIRECTORY 2
956#define SSH_FILEXFER_TYPE_SYMLINK 3
957#define SSH_FILEXFER_TYPE_SPECIAL 4
958#define SSH_FILEXFER_TYPE_UNKNOWN 5
959
968#define SSH_FX_OK 0
970#define SSH_FX_EOF 1
972#define SSH_FX_NO_SUCH_FILE 2
974#define SSH_FX_PERMISSION_DENIED 3
976#define SSH_FX_FAILURE 4
978#define SSH_FX_BAD_MESSAGE 5
980#define SSH_FX_NO_CONNECTION 6
982#define SSH_FX_CONNECTION_LOST 7
984#define SSH_FX_OP_UNSUPPORTED 8
986#define SSH_FX_INVALID_HANDLE 9
988#define SSH_FX_NO_SUCH_PATH 10
990#define SSH_FX_FILE_ALREADY_EXISTS 11
992#define SSH_FX_WRITE_PROTECT 12
994#define SSH_FX_NO_MEDIA 13
995
998/* file flags */
999#define SSH_FXF_READ 0x01
1000#define SSH_FXF_WRITE 0x02
1001#define SSH_FXF_APPEND 0x04
1002#define SSH_FXF_CREAT 0x08
1003#define SSH_FXF_TRUNC 0x10
1004#define SSH_FXF_EXCL 0x20
1005#define SSH_FXF_TEXT 0x40
1006
1007/* file type flags */
1008#define SSH_S_IFMT 00170000
1009#define SSH_S_IFSOCK 0140000
1010#define SSH_S_IFLNK 0120000
1011#define SSH_S_IFREG 0100000
1012#define SSH_S_IFBLK 0060000
1013#define SSH_S_IFDIR 0040000
1014#define SSH_S_IFCHR 0020000
1015#define SSH_S_IFIFO 0010000
1016
1017/* rename flags */
1018#define SSH_FXF_RENAME_OVERWRITE 0x00000001
1019#define SSH_FXF_RENAME_ATOMIC 0x00000002
1020#define SSH_FXF_RENAME_NATIVE 0x00000004
1021
1022#define SFTP_OPEN SSH_FXP_OPEN
1023#define SFTP_CLOSE SSH_FXP_CLOSE
1024#define SFTP_READ SSH_FXP_READ
1025#define SFTP_WRITE SSH_FXP_WRITE
1026#define SFTP_LSTAT SSH_FXP_LSTAT
1027#define SFTP_FSTAT SSH_FXP_FSTAT
1028#define SFTP_SETSTAT SSH_FXP_SETSTAT
1029#define SFTP_FSETSTAT SSH_FXP_FSETSTAT
1030#define SFTP_OPENDIR SSH_FXP_OPENDIR
1031#define SFTP_READDIR SSH_FXP_READDIR
1032#define SFTP_REMOVE SSH_FXP_REMOVE
1033#define SFTP_MKDIR SSH_FXP_MKDIR
1034#define SFTP_RMDIR SSH_FXP_RMDIR
1035#define SFTP_REALPATH SSH_FXP_REALPATH
1036#define SFTP_STAT SSH_FXP_STAT
1037#define SFTP_RENAME SSH_FXP_RENAME
1038#define SFTP_READLINK SSH_FXP_READLINK
1039#define SFTP_SYMLINK SSH_FXP_SYMLINK
1040#define SFTP_EXTENDED SSH_FXP_EXTENDED
1041
1042/* openssh flags */
1043#define SSH_FXE_STATVFS_ST_RDONLY 0x1 /* read-only */
1044#define SSH_FXE_STATVFS_ST_NOSUID 0x2 /* no setuid */
1045
1046#ifdef __cplusplus
1047}
1048#endif
1049
1050#endif /* SFTP_H */
1051
LIBSSH_API sftp_attributes sftp_fstat(sftp_file file)
Get information about a file or directory from a file handle.
Definition sftp.c:3504
LIBSSH_API void sftp_file_set_nonblocking(sftp_file handle)
Make the sftp communication for this file handle non blocking.
Definition sftp.c:1988
LIBSSH_API int sftp_mkdir(sftp_session sftp, const char *directory, mode_t mode)
Create a directory.
Definition sftp.c:2507
LIBSSH_API int sftp_rename(sftp_session sftp, const char *original, const char *newname)
Rename or move a file or directory.
Definition sftp.c:2612
LIBSSH_API const char * sftp_extensions_get_name(sftp_session sftp, unsigned int indexn)
Get the name of the extension provided by the server.
Definition sftp.c:784
LIBSSH_API void sftp_statvfs_free(sftp_statvfs_t statvfs_o)
Free the memory of an allocated statvfs.
Definition sftp.c:3316
LIBSSH_API int sftp_utimes(sftp_session sftp, const char *file, const struct timeval *times)
Change the last modification and access time of a file.
Definition sftp.c:2807
LIBSSH_API sftp_attributes sftp_readdir(sftp_session session, sftp_dir dir)
Get a single file attributes structure of a directory.
Definition sftp.c:1614
LIBSSH_API int sftp_seek64(sftp_file file, uint64_t new_offset)
Seek to a specific location in a file. This is the 64bit version.
Definition sftp.c:2329
LIBSSH_API int sftp_closedir(sftp_dir dir)
Close a directory handle opened by sftp_opendir().
Definition sftp.c:1843
LIBSSH_API int sftp_close(sftp_file file)
Close an open file handle.
Definition sftp.c:1828
LIBSSH_API void sftp_server_free(sftp_session sftp)
Close and deallocate a sftp server session.
Definition sftp.c:345
LIBSSH_API int sftp_async_read(sftp_file file, void *data, uint32_t len, uint32_t id)
Wait for an asynchronous read to complete and save the data.
Definition sftp.c:2149
LIBSSH_API unsigned int sftp_extensions_get_count(sftp_session sftp)
Get the count of extensions provided by the server.
Definition sftp.c:776
LIBSSH_API int sftp_get_error(sftp_session sftp)
Get the last sftp error.
Definition sftp.c:573
LIBSSH_API unsigned long sftp_tell(sftp_file file)
Report current byte position in file.
Definition sftp.c:2341
LIBSSH_API int sftp_unlink(sftp_session sftp, const char *file)
Unlink (delete) a file.
Definition sftp.c:2356
LIBSSH_API sftp_attributes sftp_lstat(sftp_session session, const char *path)
Get information about a file or directory.
Definition sftp.c:3500
LIBSSH_API sftp_statvfs_t sftp_fstatvfs(sftp_file file)
Get information about a mounted file system.
Definition sftp.c:3237
LIBSSH_API int sftp_async_read_begin(sftp_file file, uint32_t len)
Start an asynchronous read from a file using an opened sftp file handle.
Definition sftp.c:2107
LIBSSH_API void sftp_free(sftp_session sftp)
Close and deallocate a sftp session.
Definition sftp.c:372
LIBSSH_API int sftp_seek(sftp_file file, uint32_t new_offset)
Seek to a specific location in a file.
Definition sftp.c:2318
LIBSSH_API sftp_session sftp_server_new(ssh_session session, ssh_channel chan)
Create a new sftp server session.
Definition sftp.c:246
LIBSSH_API void sftp_attributes_free(sftp_attributes file)
Free a sftp attribute structure.
Definition sftp.c:1735
LIBSSH_API sftp_attributes sftp_stat(sftp_session session, const char *path)
Get information about a file or directory.
Definition sftp.c:3496
LIBSSH_API const char * sftp_extensions_get_data(sftp_session sftp, unsigned int indexn)
Get the data of the extension provided by the server.
Definition sftp.c:800
LIBSSH_API uint64_t sftp_tell64(sftp_file file)
Report current byte position in file.
Definition sftp.c:2345
LIBSSH_API int sftp_chown(sftp_session sftp, const char *file, uid_t owner, gid_t group)
Change the file owner and group.
Definition sftp.c:2784
LIBSSH_API char * sftp_readlink(sftp_session sftp, const char *path)
Read the value of a symbolic link.
Definition sftp.c:2918
LIBSSH_API int sftp_extension_supported(sftp_session sftp, const char *name, const char *data)
Check if the given extension is supported.
Definition sftp.c:816
LIBSSH_API sftp_session sftp_new_channel(ssh_session session, ssh_channel channel)
Start a new sftp session with an existing channel.
Definition sftp.c:186
LIBSSH_API sftp_file sftp_open(sftp_session session, const char *file, int accesstype, mode_t mode)
Open a file on the server.
Definition sftp.c:1859
LIBSSH_API void sftp_file_set_blocking(sftp_file handle)
Make the sftp communication for this file handle blocking.
Definition sftp.c:1991
LIBSSH_API int sftp_rmdir(sftp_session sftp, const char *directory)
Remove a directory.
Definition sftp.c:2434
LIBSSH_API void sftp_rewind(sftp_file file)
Rewinds the position of the file pointer to the beginning of the file.
Definition sftp.c:2350
LIBSSH_API int sftp_dir_eof(sftp_dir dir)
Tell if the directory has reached EOF (End Of File).
Definition sftp.c:1730
LIBSSH_API sftp_dir sftp_opendir(sftp_session session, const char *path)
Open a directory used to obtain directory entries.
Definition sftp.c:1065
LIBSSH_API int sftp_init(sftp_session sftp)
Initialize the sftp protocol with the server.
Definition sftp.c:680
LIBSSH_API ssize_t sftp_read(sftp_file file, void *buf, size_t count)
Read from a file using an opened sftp file handle.
Definition sftp.c:1996
LIBSSH_API int sftp_server_version(sftp_session sftp)
Get the version of the SFTP protocol supported by the server.
Definition sftp.c:1609
LIBSSH_API int sftp_setstat(sftp_session sftp, const char *file, sftp_attributes attr)
Set file attributes on a file, directory or symbolic link.
Definition sftp.c:2698
LIBSSH_API char * sftp_canonicalize_path(sftp_session sftp, const char *path)
Canonicalize a sftp path.
Definition sftp.c:3325
LIBSSH_API int sftp_server_init(sftp_session sftp)
Initialize the sftp server.
Definition sftp.c:283
LIBSSH_API int sftp_symlink(sftp_session sftp, const char *target, const char *dest)
Create a symbolic link.
Definition sftp.c:2824
LIBSSH_API sftp_session sftp_new(ssh_session session)
Creates a new sftp session.
Definition sftp.c:112
LIBSSH_API int sftp_chmod(sftp_session sftp, const char *file, mode_t mode)
Change permissions of a file.
Definition sftp.c:2797
LIBSSH_API sftp_statvfs_t sftp_statvfs(sftp_session sftp, const char *path)
Get information about a mounted file system.
Definition sftp.c:3049
LIBSSH_API int sftp_fsync(sftp_file file)
Synchronize a file's in-core state with storage device.
Definition sftp.c:3135
LIBSSH_API ssize_t sftp_write(sftp_file file, const void *buf, size_t count)
Write to a file using an opened sftp file handle.
Definition sftp.c:2232
Definition sftp.h:162
Definition sftp.h:129
Definition sftp.h:112
Definition sftp.c:62
Definition sftp.h:103
Definition sftp.h:121
Definition sftp.h:96
Definition sftp.h:147
Definition sftp.h:81
Definition sftp.h:153
SFTP statvfs structure.
Definition sftp.h:190
uint64_t f_blocks
Definition sftp.h:193
uint64_t f_ffree
Definition sftp.h:197
uint64_t f_files
Definition sftp.h:196
uint64_t f_bavail
Definition sftp.h:195
uint64_t f_namemax
Definition sftp.h:201
uint64_t f_bfree
Definition sftp.h:194
uint64_t f_favail
Definition sftp.h:198
uint64_t f_flag
Definition sftp.h:200
uint64_t f_frsize
Definition sftp.h:192
uint64_t f_fsid
Definition sftp.h:199
Definition buffer.c:48
Definition channels.h:66
Definition misc.h:45
Definition session.h:127
Definition string.h:33