remove noise
This commit is contained in:
parent
0bea456401
commit
5a08e51906
@ -645,21 +645,17 @@ xrdp_mm_chan_process_msg(struct xrdp_mm* self, struct trans* trans,
|
|||||||
switch (id)
|
switch (id)
|
||||||
{
|
{
|
||||||
case 2: /* channel init response */
|
case 2: /* channel init response */
|
||||||
g_writeln("channel init response");
|
|
||||||
rv = xrdp_mm_trans_process_init_response(self, trans);
|
rv = xrdp_mm_trans_process_init_response(self, trans);
|
||||||
break;
|
break;
|
||||||
case 4: /* channel setup response */
|
case 4: /* channel setup response */
|
||||||
g_writeln("channel setup response");
|
|
||||||
break;
|
break;
|
||||||
case 6: /* channel data response */
|
case 6: /* channel data response */
|
||||||
g_writeln("channel data response");
|
|
||||||
break;
|
break;
|
||||||
case 8: /* channel data */
|
case 8: /* channel data */
|
||||||
g_writeln("channel data");
|
|
||||||
rv = xrdp_mm_trans_process_channel_data(self, trans);
|
rv = xrdp_mm_trans_process_channel_data(self, trans);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
g_writeln("unknown");
|
g_writeln("xrdp_mm_chan_process_msg: unknown id %d", id);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (rv != 0)
|
if (rv != 0)
|
||||||
@ -687,7 +683,6 @@ xrdp_mm_chan_data_in(struct trans* trans)
|
|||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
g_writeln("xrdp_mm_chan_data_in");
|
|
||||||
self = (struct xrdp_mm*)(trans->callback_data);
|
self = (struct xrdp_mm*)(trans->callback_data);
|
||||||
s = trans_get_in_s(trans);
|
s = trans_get_in_s(trans);
|
||||||
if (s == 0)
|
if (s == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user