libssh  0.10.6
The SSH library
Loading...
Searching...
No Matches
bind.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#ifndef BIND_H_
22#define BIND_H_
23
24#include "libssh/priv.h"
25#include "libssh/kex.h"
26#include "libssh/session.h"
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
33 struct ssh_common_struct common; /* stuff common to ssh_bind and ssh_session */
34 struct ssh_bind_callbacks_struct *bind_callbacks;
35 void *bind_callbacks_userdata;
36
37 struct ssh_poll_handle_struct *poll;
38 /* options */
39 char *wanted_methods[SSH_KEX_METHODS];
40 char *banner;
41 char *ecdsakey;
42 char *dsakey;
43 char *rsakey;
44 char *ed25519key;
45 ssh_key ecdsa;
46 ssh_key dsa;
47 ssh_key rsa;
48 ssh_key ed25519;
49 char *bindaddr;
50 socket_t bindfd;
51 unsigned int bindport;
52 int blocking;
53 int toaccept;
54 bool config_processed;
55 char *config_dir;
56 char *pubkey_accepted_key_types;
57 char* moduli_file;
58 int rsa_min_size;
59};
60
61struct ssh_poll_handle_struct *ssh_bind_get_poll(struct ssh_bind_struct
62 *sshbind);
63
64#ifdef __cplusplus
65}
66#endif
67
68#endif /* BIND_H_ */
These are the callbacks exported by the ssh_bind structure.
Definition server.h:81
Definition bind.h:32
Definition session.h:121
Definition pki.h:54
Definition poll.c:63