libssh  0.10.1
The SSH library
Loading...
Searching...
No Matches
legacy.h
1/*
2 * This file is part of the SSH Library
3 *
4 * Copyright (c) 2010 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
21/* Since libssh.h includes legacy.h, it's important that libssh.h is included
22 * first. we don't define LEGACY_H now because we want it to be defined when
23 * included from libssh.h
24 * All function calls declared in this header are deprecated and meant to be
25 * removed in future.
26 */
27
28#ifndef LEGACY_H_
29#define LEGACY_H_
30
33
34LIBSSH_API int ssh_auth_list(ssh_session session);
35LIBSSH_API int ssh_userauth_offer_pubkey(ssh_session session, const char *username, int type, ssh_string publickey);
36LIBSSH_API int ssh_userauth_pubkey(ssh_session session, const char *username, ssh_string publickey, ssh_private_key privatekey);
37#ifndef _WIN32
38LIBSSH_API int ssh_userauth_agent_pubkey(ssh_session session, const char *username,
39 ssh_public_key publickey);
40#endif
41LIBSSH_API int ssh_userauth_autopubkey(ssh_session session, const char *passphrase);
42LIBSSH_API int ssh_userauth_privatekey_file(ssh_session session, const char *username,
43 const char *filename, const char *passphrase);
44
45SSH_DEPRECATED LIBSSH_API void buffer_free(ssh_buffer buffer);
46SSH_DEPRECATED LIBSSH_API void *buffer_get(ssh_buffer buffer);
47SSH_DEPRECATED LIBSSH_API uint32_t buffer_get_len(ssh_buffer buffer);
48SSH_DEPRECATED LIBSSH_API ssh_buffer buffer_new(void);
49
50SSH_DEPRECATED LIBSSH_API ssh_channel channel_accept_x11(ssh_channel channel, int timeout_ms);
51SSH_DEPRECATED LIBSSH_API int channel_change_pty_size(ssh_channel channel,int cols,int rows);
52SSH_DEPRECATED LIBSSH_API ssh_channel channel_forward_accept(ssh_session session, int timeout_ms);
53SSH_DEPRECATED LIBSSH_API int channel_close(ssh_channel channel);
54SSH_DEPRECATED LIBSSH_API int channel_forward_cancel(ssh_session session, const char *address, int port);
55SSH_DEPRECATED LIBSSH_API int channel_forward_listen(ssh_session session, const char *address, int port, int *bound_port);
56SSH_DEPRECATED LIBSSH_API void channel_free(ssh_channel channel);
57SSH_DEPRECATED LIBSSH_API int channel_get_exit_status(ssh_channel channel);
58SSH_DEPRECATED LIBSSH_API ssh_session channel_get_session(ssh_channel channel);
59SSH_DEPRECATED LIBSSH_API int channel_is_closed(ssh_channel channel);
60SSH_DEPRECATED LIBSSH_API int channel_is_eof(ssh_channel channel);
61SSH_DEPRECATED LIBSSH_API int channel_is_open(ssh_channel channel);
62SSH_DEPRECATED LIBSSH_API ssh_channel channel_new(ssh_session session);
63SSH_DEPRECATED LIBSSH_API int channel_open_forward(ssh_channel channel, const char *remotehost,
64 int remoteport, const char *sourcehost, int localport);
65SSH_DEPRECATED LIBSSH_API int channel_open_session(ssh_channel channel);
66SSH_DEPRECATED LIBSSH_API int channel_poll(ssh_channel channel, int is_stderr);
67SSH_DEPRECATED LIBSSH_API int channel_read(ssh_channel channel, void *dest, uint32_t count, int is_stderr);
68
69SSH_DEPRECATED LIBSSH_API int channel_read_buffer(ssh_channel channel, ssh_buffer buffer, uint32_t count,
70 int is_stderr);
71
72SSH_DEPRECATED LIBSSH_API int channel_read_nonblocking(ssh_channel channel, void *dest, uint32_t count,
73 int is_stderr);
74SSH_DEPRECATED LIBSSH_API int channel_request_env(ssh_channel channel, const char *name, const char *value);
75SSH_DEPRECATED LIBSSH_API int channel_request_exec(ssh_channel channel, const char *cmd);
76SSH_DEPRECATED LIBSSH_API int channel_request_pty(ssh_channel channel);
77SSH_DEPRECATED LIBSSH_API int channel_request_pty_size(ssh_channel channel, const char *term,
78 int cols, int rows);
79SSH_DEPRECATED LIBSSH_API int channel_request_shell(ssh_channel channel);
80SSH_DEPRECATED LIBSSH_API int channel_request_send_signal(ssh_channel channel, const char *signum);
81SSH_DEPRECATED LIBSSH_API int channel_request_sftp(ssh_channel channel);
82SSH_DEPRECATED LIBSSH_API int channel_request_subsystem(ssh_channel channel, const char *subsystem);
83SSH_DEPRECATED LIBSSH_API int channel_request_x11(ssh_channel channel, int single_connection, const char *protocol,
84 const char *cookie, int screen_number);
85SSH_DEPRECATED LIBSSH_API int channel_send_eof(ssh_channel channel);
86SSH_DEPRECATED LIBSSH_API int channel_select(ssh_channel *readchans, ssh_channel *writechans, ssh_channel *exceptchans, struct
87 timeval * timeout);
88SSH_DEPRECATED LIBSSH_API void channel_set_blocking(ssh_channel channel, int blocking);
89SSH_DEPRECATED LIBSSH_API int channel_write(ssh_channel channel, const void *data, uint32_t len);
90
91SSH_DEPRECATED LIBSSH_API void privatekey_free(ssh_private_key prv);
92SSH_DEPRECATED LIBSSH_API ssh_private_key privatekey_from_file(ssh_session session, const char *filename,
93 int type, const char *passphrase);
94SSH_DEPRECATED LIBSSH_API void publickey_free(ssh_public_key key);
95SSH_DEPRECATED LIBSSH_API int ssh_publickey_to_file(ssh_session session, const char *file,
96 ssh_string pubkey, int type);
97SSH_DEPRECATED LIBSSH_API ssh_string publickey_from_file(ssh_session session, const char *filename,
98 int *type);
99SSH_DEPRECATED LIBSSH_API ssh_public_key publickey_from_privatekey(ssh_private_key prv);
100SSH_DEPRECATED LIBSSH_API ssh_string publickey_to_string(ssh_public_key key);
101SSH_DEPRECATED LIBSSH_API int ssh_try_publickey_from_file(ssh_session session, const char *keyfile,
102 ssh_string *publickey, int *type);
103SSH_DEPRECATED LIBSSH_API enum ssh_keytypes_e ssh_privatekey_type(ssh_private_key privatekey);
104
105LIBSSH_API ssh_string ssh_get_pubkey(ssh_session session);
106
107LIBSSH_API ssh_message ssh_message_retrieve(ssh_session session, uint32_t packettype);
108LIBSSH_API ssh_public_key ssh_message_auth_publickey(ssh_message msg);
109
110SSH_DEPRECATED LIBSSH_API void string_burn(ssh_string str);
111SSH_DEPRECATED LIBSSH_API ssh_string string_copy(ssh_string str);
112SSH_DEPRECATED LIBSSH_API void *string_data(ssh_string str);
113SSH_DEPRECATED LIBSSH_API int string_fill(ssh_string str, const void *data, size_t len);
114SSH_DEPRECATED LIBSSH_API void string_free(ssh_string str);
115SSH_DEPRECATED LIBSSH_API ssh_string string_from_char(const char *what);
116SSH_DEPRECATED LIBSSH_API size_t string_len(ssh_string str);
117SSH_DEPRECATED LIBSSH_API ssh_string string_new(size_t size);
118SSH_DEPRECATED LIBSSH_API char *string_to_char(ssh_string str);
119
120#endif /* LEGACY_H_ */
SSH_DEPRECATED LIBSSH_API int channel_read_buffer(ssh_channel channel, ssh_buffer buffer, uint32_t count, int is_stderr)
Read data from a channel into a buffer.
Definition: channels.c:2836
Definition: buffer.c:47
Definition: channels.h:62
Definition: messages.h:85
Definition: keys.h:47
Definition: keys.h:28
Definition: session.h:110
Definition: string.h:29