/[rdesktop]/sourceforge.net/trunk/rdesktop/rdp.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/rdp.c

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

revision 513 by matthewc, Tue Oct 28 01:44:48 2003 UTC revision 522 by matthewc, Wed Oct 29 04:18:00 2003 UTC
# Line 724  process_bitmap_updates(STREAM s) Line 724  process_bitmap_updates(STREAM s)
724                  DEBUG(("BITMAP_UPDATE(l=%d,t=%d,r=%d,b=%d,w=%d,h=%d,Bpp=%d,cmp=%d)\n",                  DEBUG(("BITMAP_UPDATE(l=%d,t=%d,r=%d,b=%d,w=%d,h=%d,Bpp=%d,cmp=%d)\n",
725                         left, top, right, bottom, width, height, Bpp, compress));                         left, top, right, bottom, width, height, Bpp, compress));
726    
727                    /* Server may limit bpp - this is how we find out */
728                    if (g_server_bpp != bpp) {
729                            warning("Server limited colour depth to %d bits\n", bpp);
730                            g_server_bpp = bpp;
731                    }
732    
733                  if (!compress)                  if (!compress)
734                  {                  {
735                          int y;                          int y;
# Line 858  process_data_pdu(STREAM s) Line 864  process_data_pdu(STREAM s)
864                          /* User logged on */                          /* User logged on */
865                          break;                          break;
866    
867                    case RDP_DATA_PDU_DISCONNECT:
868                            /* Normally received when user logs out or disconnects from a
869                               console session on Windows XP and 2003 Server */
870                            DEBUG(("Received disconnect PDU\n"));
871                            break;
872    
873                  default:                  default:
874                          unimpl("data PDU %d\n", data_pdu_type);                          unimpl("data PDU %d\n", data_pdu_type);
875          }          }

Legend:
Removed from v.513  
changed lines
  Added in v.522

  ViewVC Help
Powered by ViewVC 1.1.26