aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/sftp.h
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-10-13 22:14:23 +0200
committerAndreas Schneider <mail@cynapses.org>2009-10-13 22:14:23 +0200
commit22e74e3bab259ed8b6a89cef1fe85f2e99c530b8 (patch)
tree95f80a6f2383109f60c665f7cbf6b850c3acb18a /include/libssh/sftp.h
parent02b3104215b64b60a586de25d16403f387cd880a (diff)
downloadlibssh-22e74e3bab259ed8b6a89cef1fe85f2e99c530b8.tar.gz
libssh-22e74e3bab259ed8b6a89cef1fe85f2e99c530b8.tar.xz
libssh-22e74e3bab259ed8b6a89cef1fe85f2e99c530b8.zip
Remove deprecated functions.
Diffstat (limited to 'include/libssh/sftp.h')
-rw-r--r--include/libssh/sftp.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/libssh/sftp.h b/include/libssh/sftp.h
index 6d6d71a2..0293f29b 100644
--- a/include/libssh/sftp.h
+++ b/include/libssh/sftp.h
@@ -47,12 +47,6 @@
extern "C" {
#endif
-#ifdef __GNUC__
-#define SFTP_DEPRECATED __attribute__ ((deprecated))
-#else
-#define SFTP_DEPRECATED
-#endif
-
#ifdef _WIN32
#ifndef uid_t
typedef uint32_t uid_t;
@@ -382,11 +376,6 @@ LIBSSH_API void sftp_attributes_free(sftp_attributes file);
LIBSSH_API int sftp_closedir(sftp_dir dir);
/**
- * @deprecated Use sftp_closedir() instead.
- */
-LIBSSH_API int sftp_dir_close(sftp_dir dir) SFTP_DEPRECATED;
-
-/**
* @brief Close an open file handle.
*
* @param file The open sftp file handle to close.
@@ -398,11 +387,6 @@ LIBSSH_API int sftp_dir_close(sftp_dir dir) SFTP_DEPRECATED;
LIBSSH_API int sftp_close(sftp_file file);
/**
- * @deprecated Use sftp_close() instead.
- */
-LIBSSH_API int sftp_file_close(sftp_file file) SFTP_DEPRECATED;
-
-/**
* @brief Open a file on the server.
*
* @param session The sftp session handle.
@@ -579,11 +563,6 @@ LIBSSH_API uint64_t sftp_tell64(sftp_file file);
LIBSSH_API void sftp_rewind(sftp_file file);
/**
- * @deprecated Use sftp_unlink() instead.
- */
-LIBSSH_API int sftp_rm(sftp_session sftp, const char *file) SFTP_DEPRECATED;
-
-/**
* @brief Unlink (delete) a file.
*
* @param sftp The sftp session handle.