Mercurial > dropbear
comparison channel.h @ 156:8c2b3506f112
Rearrange preprocessor parts so that compilation with various options
disabled works OK.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 22 Dec 2004 15:37:50 +0000 |
parents | 82fcf3185616 |
children | 161557a9dde8 |
comparison
equal
deleted
inserted
replaced
153:6ba95762ec4e | 156:8c2b3506f112 |
---|---|
120 | 120 |
121 #ifdef DROPBEAR_CLIENT | 121 #ifdef DROPBEAR_CLIENT |
122 const struct ChanType clichansess; | 122 const struct ChanType clichansess; |
123 #endif | 123 #endif |
124 | 124 |
125 #ifdef USING_LISTENERS | 125 #if defined(USING_LISTENERS) || defined(DROPBEAR_CLIENT) |
126 int send_msg_channel_open_init(int fd, const struct ChanType *type); | 126 int send_msg_channel_open_init(int fd, const struct ChanType *type); |
127 void recv_msg_channel_open_confirmation(); | 127 void recv_msg_channel_open_confirmation(); |
128 void recv_msg_channel_open_failure(); | 128 void recv_msg_channel_open_failure(); |
129 #endif | 129 #endif |
130 | 130 |