/[rdesktop]/sourceforge.net/trunk/rdesktop/rdp5.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/rdp5.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 410 by forsberg, Thu Mar 27 13:07:28 2003 UTC revision 411 by forsberg, Fri Jun 6 10:48:38 2003 UTC
# Line 61  rdp5_process(STREAM s, BOOL encryption, Line 61  rdp5_process(STREAM s, BOOL encryption,
61                                  in_uint8s(s, 2);        /* uint16 = 2 */                                  in_uint8s(s, 2);        /* uint16 = 2 */
62                                  process_palette(s);                                  process_palette(s);
63                                  break;                                  break;
64                          case 3: /* probably an palette with offset 3. Weird */                          case 3: /* probably an palette with offset 3. Weird */
65                                  break;                                  break;
66                          case 5:                          case 5:
67                                  process_null_system_pointer_pdu(s);                                  process_null_system_pointer_pdu(s);
# Line 81  rdp5_process(STREAM s, BOOL encryption, Line 81  rdp5_process(STREAM s, BOOL encryption,
81  }  }
82    
83  void  void
84  rdp5_process_channel(STREAM s, uint16 channel)  rdp5_process_channel(STREAM s, uint16 channelno)
85  {  {
86          printf("Data on channel %02x:\n", channel);          rdp5_channel *channel;
87          hexdump(s->p, s->end - s->p);          channel = find_channel_by_channelno(channelno);
88            if (NULL != channel)
89            {
90                    channel->channelcallback(s, channelno);
91            }
92  }  }

Legend:
Removed from v.410  
changed lines
  Added in v.411

  ViewVC Help
Powered by ViewVC 1.1.26