aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-07-30 00:46:45 +0200
committerAndreas Schneider <mail@cynapses.org>2009-07-30 00:46:45 +0200
commit5f93742c5e02b978f95725c3384f1b125d3039b4 (patch)
tree3c98bcc4448f09a101e1c14afc3170e77dd74cde
parent9457c770dfb4f4f6c40547948c746d3c01b22ee9 (diff)
downloadlibssh-5f93742c5e02b978f95725c3384f1b125d3039b4.tar.gz
libssh-5f93742c5e02b978f95725c3384f1b125d3039b4.tar.xz
libssh-5f93742c5e02b978f95725c3384f1b125d3039b4.zip
Add missing functions to map file.
-rw-r--r--libssh/libssh.map21
1 files changed, 12 insertions, 9 deletions
diff --git a/libssh/libssh.map b/libssh/libssh.map
index 7c677d43..43c5cb77 100644
--- a/libssh/libssh.map
+++ b/libssh/libssh.map
@@ -1,6 +1,6 @@
SSH_0.3 {
global:
- ssh_get_error; ssh_get_error_code;
+ ssh_get_error; ssh_get_error_code; ssh_version; ssh_log;
ssh_new; ssh_set_options; ssh_get_fd; ssh_silent_disconnect;
ssh_connect; ssh_disconnect; ssh_service_request; ssh_get_issue_banner;
ssh_get_openssh_version;
@@ -20,28 +20,31 @@ SSH_0.3 {
channel_request_shell; channel_request_subsystem; channel_request_env;
channel_request_exec; channel_request_sftp; channel_write;
channel_send_eof; channel_read_buffer; channel_read; channel_read_nonblocking;
- channel_poll; channel_close; channel_is_open;
+ channel_poll; channel_close; channel_is_open; channel_get_exit_status;
channel_is_closed; channel_is_eof; channel_select;
- ssh_options_new; ssh_options_copy; ssh_options_free; ssh_options_set_wanted_algos;
+ ssh_options_new; ssh_options_copy; ssh_options_free;
+ ssh_options_set_wanted_algos; ssh_options_set_auth_callback;
ssh_options_set_username; ssh_options_set_port; ssh_options_getopt;
ssh_options_set_host; ssh_options_set_fd; ssh_options_set_bind;
ssh_options_set_identity; ssh_options_set_status_callback;
ssh_options_set_timeout; ssh_options_set_ssh_dir;
ssh_options_set_known_hosts_file; ssh_options_allow_ssh1;
ssh_options_allow_ssh2; ssh_options_set_dsa_server_key;
- ssh_options_set_rsa_server_key;
+ ssh_options_set_rsa_server_key; ssh_options_set_log_verbosity;
buffer_new; buffer_free; buffer_get; buffer_get_len;
+ ssh_auth_list;
ssh_userauth_none; ssh_userauth_password; ssh_userauth_offer_pubkey;
ssh_userauth_pubkey; ssh_userauth_autopubkey; ssh_userauth_kbdint;
ssh_userauth_kbdint_getnprompts; ssh_userauth_kbdint_getname;
ssh_userauth_kbdint_getinstruction; ssh_userauth_kbdint_getprompt;
ssh_userauth_kbdint_setanswer;
- sftp_new; sftp_free; sftp_init; sftp_opendir; sftp_readdir; sftp_dir_eof;
- sftp_stat; sftp_lstat; sftp_fstat; sftp_attributes_free; sftp_dir_close;
- sftp_file_close; sftp_open; sftp_read; sftp_write; sftp_seek; sftp_tell;
- sftp_tell64;
+ sftp_new; sftp_free; sftp_init; sftp_get_error;
+ sftp_opendir; sftp_closedir; sftp_readdir; sftp_dir_eof; sftp_stat;
+ sftp_lstat; sftp_fstat; sftp_attributes_free;
+ sftp_dir_close; sftp_file_close; sftp_open; sftp_close; sftp_read;
+ sftp_write; sftp_seek; sftp_tell; sftp_tell64; sftp_unlink;
sftp_rewind; sftp_rm; sftp_rmdir; sftp_mkdir; sftp_rename; sftp_setstat;
- sftp_symlink; sftp_readlink;
+ sftp_chmod; sftp_utimes; sftp_symlink; sftp_readlink;
sftp_canonicalize_path; sftp_server_new; sftp_server_init;
sftp_get_client_message; sftp_client_message_free; sftp_reply_name;
sftp_reply_handle; sftp_handle_alloc; sftp_reply_attr; sftp_handle;