libssh  0.10.0
The SSH library
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
29 struct ssh_common_struct common; /* stuff common to ssh_bind and ssh_session */
30 struct ssh_bind_callbacks_struct *bind_callbacks;
31 void *bind_callbacks_userdata;
32
33 struct ssh_poll_handle_struct *poll;
34 /* options */
35 char *wanted_methods[SSH_KEX_METHODS];
36 char *banner;
37 char *ecdsakey;
38 char *dsakey;
39 char *rsakey;
40 char *ed25519key;
41 ssh_key ecdsa;
42 ssh_key dsa;
43 ssh_key rsa;
44 ssh_key ed25519;
45 char *bindaddr;
46 socket_t bindfd;
47 unsigned int bindport;
48 int blocking;
49 int toaccept;
50 bool config_processed;
51 char *config_dir;
52 char *pubkey_accepted_key_types;
53 char* moduli_file;
54 int rsa_min_size;
55};
56
57struct ssh_poll_handle_struct *ssh_bind_get_poll(struct ssh_bind_struct
58 *sshbind);
59
60
61#endif /* BIND_H_ */
These are the callbacks exported by the ssh_bind structure.
Definition: server.h:81
Definition: bind.h:28
Definition: session.h:104
Definition: pki.h:54
Definition: poll.c:63