aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTilo Eckert <tilo.eckert@flam.de>2015-07-22 15:24:14 +0200
committerAndreas Schneider <asn@cryptomilk.org>2015-07-30 10:47:34 +0200
commit71d86be42ec5ba4217cebaea1b65bd169c77f3ce (patch)
tree3d57e5f322ca32b0da40733b69d7e0f2f4af1766 /include
parent267fe0208814898e1dff5dd401cbb049ebb9a2f5 (diff)
downloadlibssh-71d86be42ec5ba4217cebaea1b65bd169c77f3ce.tar.gz
libssh-71d86be42ec5ba4217cebaea1b65bd169c77f3ce.tar.xz
libssh-71d86be42ec5ba4217cebaea1b65bd169c77f3ce.zip
define our own platform-independent S_IF macros
Signed-off-by: Tilo Eckert <tilo.eckert@flam.de> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include')
-rw-r--r--include/libssh/sftp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/libssh/sftp.h b/include/libssh/sftp.h
index 8fb8f116..6620841b 100644
--- a/include/libssh/sftp.h
+++ b/include/libssh/sftp.h
@@ -962,6 +962,16 @@ void sftp_handle_remove(sftp_session sftp, void *handle);
#define SSH_FXF_EXCL 0x20
#define SSH_FXF_TEXT 0x40
+/* file type flags */
+#define SSH_S_IFMT 00170000
+#define SSH_S_IFSOCK 0140000
+#define SSH_S_IFLNK 0120000
+#define SSH_S_IFREG 0100000
+#define SSH_S_IFBLK 0060000
+#define SSH_S_IFDIR 0040000
+#define SSH_S_IFCHR 0020000
+#define SSH_S_IFIFO 0010000
+
/* rename flags */
#define SSH_FXF_RENAME_OVERWRITE 0x00000001
#define SSH_FXF_RENAME_ATOMIC 0x00000002