comparison channel.h @ 1097:93e29b0ef8dc

Turn start_send_channel_request()'s type argument into char *
author Gaël PORTAY <gael.portay@gmail.com>
date Sat, 02 May 2015 13:58:05 +0200
parents 10f198d4a308
children 9169e4e7cbee
comparison
equal deleted inserted replaced
1096:a9e4d66ffb2c 1097:93e29b0ef8dc
133 #if defined(USING_LISTENERS) || defined(DROPBEAR_CLIENT) 133 #if defined(USING_LISTENERS) || defined(DROPBEAR_CLIENT)
134 int send_msg_channel_open_init(int fd, const struct ChanType *type); 134 int send_msg_channel_open_init(int fd, const struct ChanType *type);
135 void recv_msg_channel_open_confirmation(); 135 void recv_msg_channel_open_confirmation();
136 void recv_msg_channel_open_failure(); 136 void recv_msg_channel_open_failure();
137 #endif 137 #endif
138 void start_send_channel_request(struct Channel *channel, unsigned char *type); 138 void start_send_channel_request(struct Channel *channel, char *type);
139 139
140 void send_msg_request_success(); 140 void send_msg_request_success();
141 void send_msg_request_failure(); 141 void send_msg_request_failure();
142 142
143 143