Differences From Artifact [4d1c263ab8]:
- File ssh.c — part of check-in [bd48c6b3f9] at 1999-07-20 08:01:56 on branch trunk — Jimen Ching's patches to remove compiler warnings (user: simon size: 17753)
To Artifact [ef79ed4e19]:
- File ssh.c — part of check-in [3c445c51dd] at 1999-09-10 10:35:26 on branch trunk — We failed to ignore SSH_MSG_IGNORE :-) (user: simon size: 17829)
| ︙ | |||
152 153 154 155 156 157 158 159 160 161 162 163 164 165 | 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | + + |
cipher->decrypt(pktin.data, biglen);
pktin.type = pktin.data[pad];
pktin.body = pktin.data+pad+1;
if (pktin.type == 36) { /* SSH_MSG_DEBUG */
/* FIXME: log it */
} else if (pktin.type == 32) { /* SSH_MSG_IGNORE */
/* do nothing */;
} else
ssh_protocol(NULL, 0, 1);
}
crFinishV;
}
static void s_wrpkt_start(int type, int len) {
|
| ︙ |