|
Lines 1135-1141
server_input_channel_req(int type, u_int
Link Here
|
| 1135 |
if (!strcmp(rtype, "eow@openssh.com")) { |
1135 |
if (!strcmp(rtype, "eow@openssh.com")) { |
| 1136 |
packet_check_eom(); |
1136 |
packet_check_eom(); |
| 1137 |
chan_rcvd_eow(c); |
1137 |
chan_rcvd_eow(c); |
| 1138 |
} else if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN) |
1138 |
} else if ((c->type == SSH_CHANNEL_LARVAL || |
|
|
1139 |
c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0) |
| 1139 |
success = session_input_channel_req(c, rtype); |
1140 |
success = session_input_channel_req(c, rtype); |
| 1140 |
if (reply) { |
1141 |
if (reply) { |
| 1141 |
packet_start(success ? |
1142 |
packet_start(success ? |