OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ChanType
(Results
1 - 13
of
13
) sorted by null
/external/dropbear/
tcpfwd.h
42
const struct
ChanType
*
chantype
;
member in struct:TCPListener
58
extern const struct
ChanType
svr_chan_tcpdirect;
63
extern const struct
ChanType
cli_chan_tcpremote;
channel.h
58
struct
ChanType
;
89
const struct
ChanType
* type;
93
struct
ChanType
{
104
void chaninitialise(const struct
ChanType
*chantypes[]);
110
const struct
ChanType
*type,
127
extern const struct
ChanType
clichansess;
131
int send_msg_channel_open_init(int fd, const struct
ChanType
*type);
chansession.h
83
extern const struct
ChanType
svrchansess;
cli-tcpfwd.c
37
const struct
ChanType
cli_chan_tcpremote = {
50
static const struct
ChanType
cli_chan_tcplocal = {
109
tcpinfo->
chantype
= &cli_chan_tcplocal;
svr-tcpfwd.c
45
const struct
ChanType
svr_chan_tcpdirect = {
54
static const struct
ChanType
svr_chan_tcpremote = {
133
&& (info1->
chantype
== info2->
chantype
)
210
tcpinfo->
chantype
= &svr_chan_tcpremote;
session.h
158
const struct
ChanType
**chantypes; /* The valid channel types */
svr-session.c
69
static const struct
ChanType
*svr_chantypes[] = {
cli-session.c
70
static const struct
ChanType
*cli_chantypes[] = {
svr-agentfwd.c
179
static const struct
ChanType
chan_agent = {
svr-x11fwd.c
180
static const struct
ChanType
chan_x11 = {
common-channel.c
63
void chaninitialise(const struct
ChanType
*chantypes[]) {
100
const struct
ChanType
*type,
759
const struct
ChanType
**cp;
760
const struct
ChanType
*
chantype
;
local
784
for (cp = &ses.chantypes[0],
chantype
= (*cp);
785
chantype
!= NULL;
786
cp++,
chantype
= (*cp)) {
787
if (strcmp(type,
chantype
->name) == 0) {
792
if (
chantype
== NULL)
[
all
...]
cli-chansession.c
48
const struct
ChanType
clichansess = {
svr-chansession.c
993
const struct
ChanType
svrchansess = {
Completed in 68 milliseconds