Find and execute channel-specific callback when there is channel data.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@410 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Erik Forsberg 2003-06-06 10:48:38 +00:00
parent 8da3b51a70
commit 5f9d3feb42

12
rdp5.c
View File

@ -61,7 +61,7 @@ rdp5_process(STREAM s, BOOL encryption, BOOL shortform)
in_uint8s(s, 2); /* uint16 = 2 */ in_uint8s(s, 2); /* uint16 = 2 */
process_palette(s); process_palette(s);
break; break;
case 3: /* probably an palette with offset 3. Weird */ case 3: /* probably an palette with offset 3. Weird */
break; break;
case 5: case 5:
process_null_system_pointer_pdu(s); process_null_system_pointer_pdu(s);
@ -81,8 +81,12 @@ rdp5_process(STREAM s, BOOL encryption, BOOL shortform)
} }
void void
rdp5_process_channel(STREAM s, uint16 channel) rdp5_process_channel(STREAM s, uint16 channelno)
{ {
printf("Data on channel %02x:\n", channel); rdp5_channel *channel;
hexdump(s->p, s->end - s->p); channel = find_channel_by_channelno(channelno);
if (NULL != channel)
{
channel->channelcallback(s, channelno);
}
} }