24#include "libssh/priv.h"
25#include "libssh/kex.h"
26#include "libssh/session.h"
32struct ssh_bind_struct {
33 struct ssh_common_struct common;
35 void *bind_callbacks_userdata;
37 struct ssh_poll_handle_struct *poll;
39 char *wanted_methods[SSH_KEX_METHODS];
49 unsigned int bindport;
52 bool config_processed;
54 char *pubkey_accepted_key_types;
59struct ssh_poll_handle_struct *ssh_bind_get_poll(
struct ssh_bind_struct
These are the callbacks exported by the ssh_bind structure.
Definition server.h:81