27# ifndef _SSIZE_T_DEFINED
30 typedef _W64 SSIZE_T ssize_t;
31# define _SSIZE_T_DEFINED
47char *ssh_get_user_home_dir(ssh_session session);
48char *ssh_get_local_username(
void);
49char *ssh_get_local_hostname(
void);
50int ssh_file_readaccess_ok(
const char *file);
54char *ssh_path_expand_escape(ssh_session session,
const char *s);
55int ssh_analyze_banner(ssh_session session,
int server);
56int ssh_is_ipaddr_v4(
const char *str);
57int ssh_is_ipaddr(
const char *str);
62 struct ssh_iterator *root;
63 struct ssh_iterator *end;
67 struct ssh_iterator *next;
87enum ssh_quote_state_e {
93struct ssh_list *ssh_list_new(
void);
94void ssh_list_free(
struct ssh_list *list);
95struct ssh_iterator *ssh_list_get_iterator(
const struct ssh_list *list);
96struct ssh_iterator *ssh_list_find(
const struct ssh_list *list,
void *value);
98int ssh_list_append(
struct ssh_list *list,
const void *data);
99int ssh_list_prepend(
struct ssh_list *list,
const void *data);
100void ssh_list_remove(
struct ssh_list *list,
struct ssh_iterator *iterator);
101char *ssh_lowercase(
const char* str);
102char *ssh_hostport(
const char *host,
int port);
104const void *_ssh_list_pop_head(
struct ssh_list *list);
106#define ssh_iterator_value(type, iterator)\
107 ((type)((iterator)->data))
114#define ssh_list_pop_head(type, ssh_list)\
115 ((type)_ssh_list_pop_head(ssh_list))
117#define SSH_LIST_FREE(x) \
118 do { if ((x) != NULL) { ssh_list_free(x); (x) = NULL; } } while(0)
120int ssh_make_milliseconds(
unsigned long sec,
unsigned long usec);
121void ssh_timestamp_init(
struct ssh_timestamp *ts);
122int ssh_timeout_elapsed(
struct ssh_timestamp *ts,
int timeout);
125void uint64_inc(
unsigned char *counter);
127void ssh_log_hexdump(
const char *descr,
const unsigned char *what,
size_t len);
129int ssh_mkdirs(
const char *pathname, mode_t mode);
131int ssh_quote_file_name(
const char *file_name,
char *buf,
size_t buf_len);
132int ssh_newline_vis(
const char *
string,
char *buf,
size_t buf_len);
133int ssh_tmpname(
char *name);
135char *ssh_strreplace(
const char *src,
const char *pattern,
const char *repl);
137ssize_t
ssh_readn(
int fd,
void *buf,
size_t nbytes);
138ssize_t
ssh_writen(
int fd,
const void *buf,
size_t nbytes);
146FILE *ssh_strict_fopen(
const char *filename,
size_t max_file_size);
bool ssh_libssh_proxy_jumps(void)
Check if libssh proxy jumps is enabled.
Definition misc.c:2426
ssize_t ssh_writen(int fd, const void *buf, size_t nbytes)
Write the requested number of bytes to a local file.
Definition misc.c:2265
void ssh_log_hexdump(const char *descr, const unsigned char *what, size_t len)
Log the content of a buffer in hexadecimal format, similar to the output of 'hexdump -C' command.
Definition misc.c:584
int ssh_mkdirs(const char *pathname, mode_t mode)
Attempts to create a directory with the given pathname. The missing directories in the given pathname...
Definition misc.c:1126
ssize_t ssh_readn(int fd, void *buf, size_t nbytes)
Read the requested number of bytes from a local file.
Definition misc.c:2209
size_t ssh_list_count(const struct ssh_list *list)
Get the number of elements in the list.
Definition misc.c:827
void ssh_proxyjumps_free(struct ssh_list *proxy_jump_list)
Free proxy jump list.
Definition misc.c:2401
int ssh_check_hostname_syntax(const char *hostname)
Checks syntax of a domain name.
Definition misc.c:2311
char * ssh_path_expand_tilde(const char *d)
Expand a directory starting with a tilde '~'.
Definition misc.c:1189
int ssh_check_username_syntax(const char *username)
Checks syntax of a username.
Definition misc.c:2370
int ssh_timeout_update(struct ssh_timestamp *ts, int timeout)
updates a timeout value so it reflects the remaining time
Definition misc.c:1743
int ssh_dir_writeable(const char *path)
Check if the given path is an existing directory and that is accessible for writing.
Definition misc.c:343
int port
Definition misc.h:79