9127
9128
9129
9130
9131
9132
9133
9134
9135
9136
9137
9138
9139
9140
9141
9142
9143
9144
|
}
static void ssh2_msg_debug(Ssh ssh, struct Packet *pktin)
{
/* log the debug message */
char *msg;
int msglen;
int always_display;
/* XXX maybe we should actually take notice of this */
always_display = ssh2_pkt_getbool(pktin);
ssh_pkt_getstring(pktin, &msg, &msglen);
logeventf(ssh, "Remote debug message: %.*s", msglen, msg);
}
static void ssh2_msg_something_unimplemented(Ssh ssh, struct Packet *pktin)
{
|
<
|
|
|
9127
9128
9129
9130
9131
9132
9133
9134
9135
9136
9137
9138
9139
9140
9141
9142
9143
|
}
static void ssh2_msg_debug(Ssh ssh, struct Packet *pktin)
{
/* log the debug message */
char *msg;
int msglen;
/* XXX maybe we should actually take notice of the return value */
ssh2_pkt_getbool(pktin);
ssh_pkt_getstring(pktin, &msg, &msglen);
logeventf(ssh, "Remote debug message: %.*s", msglen, msg);
}
static void ssh2_msg_something_unimplemented(Ssh ssh, struct Packet *pktin)
{
|