struct ssh_socket_struct

struct ssh_socket_struct {
    // fields

    ssh_socket_callbacks callbacks;
    int data_except;
    socket_t fd_in;
    int fd_is_socket;
    socket_t fd_out;
    ssh_buffer in_buffer;
    int last_errno;
    ssh_buffer out_buffer;
    ssh_poll_handle poll_in;
    ssh_poll_handle poll_out;
    int read_wontblock;
    ssh_session session;
    enum ssh_socket_states_e state;
    int write_wontblock;
};