libssh
0.9.5
The SSH library
include
libssh
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
struct
ssh_bind_struct
{
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
};
54
55
struct
ssh_poll_handle_struct
*ssh_bind_get_poll(
struct
ssh_bind_struct
56
*sshbind);
57
58
59
#endif
/* BIND_H_ */
ssh_key_struct
Definition:
pki.h:50
ssh_bind_struct
Definition:
bind.h:28
ssh_poll_handle_struct
Definition:
poll.c:63
ssh_common_struct
Definition:
session.h:103
ssh_bind_callbacks_struct
These are the callbacks exported by the ssh_bind structure.
Definition:
server.h:79
Generated by
1.8.18