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

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

revision 592 by n-ki, Fri Jan 30 14:10:32 2004 UTC revision 650 by astrand, Thu Apr 15 20:11:19 2004 UTC
# Line 1  Line 1 
1  #include <unistd.h>  #include <unistd.h>
2  #include <sys/types.h>  #include <sys/types.h>
3    #include <sys/time.h>
4    #include <dirent.h>             /* opendir, closedir, readdir */
5  #include <time.h>  #include <time.h>
6  #include "rdesktop.h"  #include "rdesktop.h"
7    
 #define IRP_MJ_CREATE           0x00  
 #define IRP_MJ_CLOSE            0x02  
 #define IRP_MJ_READ             0x03  
 #define IRP_MJ_WRITE            0x04  
 #define IRP_MJ_DEVICE_CONTROL   0x0e  
   
8  #define IRP_MJ_CREATE                   0x00  #define IRP_MJ_CREATE                   0x00
9  #define IRP_MJ_CLOSE                    0x02  #define IRP_MJ_CLOSE                    0x02
10  #define IRP_MJ_READ                     0x03  #define IRP_MJ_READ                     0x03
# Line 18  Line 14 
14  #define IRP_MJ_QUERY_VOLUME_INFORMATION 0x0a  #define IRP_MJ_QUERY_VOLUME_INFORMATION 0x0a
15  #define IRP_MJ_DIRECTORY_CONTROL        0x0c  #define IRP_MJ_DIRECTORY_CONTROL        0x0c
16  #define IRP_MJ_DEVICE_CONTROL           0x0e  #define IRP_MJ_DEVICE_CONTROL           0x0e
17    #define IRP_MJ_LOCK_CONTROL             0x11
18    
19  #define IRP_MN_QUERY_DIRECTORY          0x01  #define IRP_MN_QUERY_DIRECTORY          0x01
20  #define IRP_MN_NOTIFY_CHANGE_DIRECTORY  0x02  #define IRP_MN_NOTIFY_CHANGE_DIRECTORY  0x02
# Line 27  extern DEVICE_FNS serial_fns; Line 24  extern DEVICE_FNS serial_fns;
24  extern DEVICE_FNS printer_fns;  extern DEVICE_FNS printer_fns;
25  extern DEVICE_FNS parallel_fns;  extern DEVICE_FNS parallel_fns;
26  extern DEVICE_FNS disk_fns;  extern DEVICE_FNS disk_fns;
27    extern FILEINFO g_fileinfo[];
28    
29  static VCHANNEL *rdpdr_channel;  static VCHANNEL *rdpdr_channel;
30    
# Line 36  uint32 g_num_devices; Line 34  uint32 g_num_devices;
34    
35  /* Table with information about rdpdr devices */  /* Table with information about rdpdr devices */
36  RDPDR_DEVICE g_rdpdr_device[RDPDR_MAX_DEVICES];  RDPDR_DEVICE g_rdpdr_device[RDPDR_MAX_DEVICES];
37    char * g_rdpdr_clientname = NULL;
38    
39  /* Used to store incoming io request, until they are ready to be completed */  /* Used to store incoming io request, until they are ready to be completed */
40  /* using a linked list ensures that they are processed in the right order, */  /* using a linked list ensures that they are processed in the right order, */
# Line 49  struct async_iorequest Line 48  struct async_iorequest
48          DEVICE_FNS *fns;          DEVICE_FNS *fns;
49    
50          struct async_iorequest *next;   /* next element in list */          struct async_iorequest *next;   /* next element in list */
51  } g_iorequest;  };
52    
53    struct async_iorequest *g_iorequest;
54    
55  /* Return device_id for a given handle */  /* Return device_id for a given handle */
56  int  int
# Line 76  convert_to_unix_filename(char *filename) Line 77  convert_to_unix_filename(char *filename)
77          }          }
78  }  }
79    
80    BOOL
81    rdpdr_handle_ok(int device, int handle)
82    {
83            switch (g_rdpdr_device[device].device_type)
84            {
85                    case DEVICE_TYPE_PARALLEL:
86                    case DEVICE_TYPE_SERIAL:
87                    case DEVICE_TYPE_PRINTER:
88                    case DEVICE_TYPE_SCARD:
89                            if (g_rdpdr_device[device].handle != handle)
90                                    return False;
91                            break;
92                    case DEVICE_TYPE_DISK:
93                            if (g_fileinfo[handle].device_id != device)
94                                    return False;
95                            break;
96            }
97            return True;
98    }
99    
100  /* Add a new io request to the table containing pending io requests so it won't block rdesktop */  /* Add a new io request to the table containing pending io requests so it won't block rdesktop */
101  BOOL  BOOL
102  add_async_iorequest(uint32 device, uint32 file, uint32 id, uint32 major, uint32 length,  add_async_iorequest(uint32 device, uint32 file, uint32 id, uint32 major, uint32 length,
103                      DEVICE_FNS * fns, long total_timeout, long interval_timeout, uint8 * buffer)                      DEVICE_FNS * fns, uint32 total_timeout, uint32 interval_timeout, uint8 * buffer,
104                        uint32 offset)
105  {  {
106          struct async_iorequest *iorq;          struct async_iorequest *iorq;
107    
108          iorq = &g_iorequest;          if (g_iorequest == NULL)
109            {
110                    g_iorequest = (struct async_iorequest *) xmalloc(sizeof(struct async_iorequest));
111                    if (!g_iorequest)
112                            return False;
113                    g_iorequest->fd = 0;
114                    g_iorequest->next = NULL;
115            }
116    
117            iorq = g_iorequest;
118    
119          while (iorq->fd != 0)          while (iorq->fd != 0)
120          {          {
121                  // create new element if needed                  // create new element if needed
122                  if (iorq->next == NULL)                  if (iorq->next == NULL)
                         iorq->next =  
                                 (struct async_iorequest *) xmalloc(sizeof(struct async_iorequest));  
   
                 iorq = iorq->next;  
         }  
   
         /* first element is special since it doesn't get deleted */  
         /* don't want to get io out of order */  
         if (g_iorequest.fd == 0)  
         {  
                 iorq = &g_iorequest;  
                 /* look for first occurrence of fd */  
                 while (iorq->next != NULL)  
123                  {                  {
                         if (iorq->fd == file)  
                                 break;  
                         iorq = iorq->next;  
                 }  
                 /* if same create new link at end of chain instead */  
                 if (iorq->fd == file)  
                 {  
                         while (iorq->next != NULL)  
                                 iorq = iorq->next;  
124                          iorq->next =                          iorq->next =
125                                  (struct async_iorequest *) xmalloc(sizeof(struct async_iorequest));                                  (struct async_iorequest *) xmalloc(sizeof(struct async_iorequest));
126                          iorq = iorq->next;                          if (!iorq->next)
127                                    return False;
128                            iorq->next->fd = 0;
129                            iorq->next->next = NULL;
130                  }                  }
131                  else                  iorq = iorq->next;
                         iorq = &g_iorequest;    /* didn't find fs use first entry */  
132          }          }
   
133          iorq->device = device;          iorq->device = device;
134          iorq->fd = file;          iorq->fd = file;
135          iorq->id = id;          iorq->id = id;
# Line 129  add_async_iorequest(uint32 device, uint3 Line 140  add_async_iorequest(uint32 device, uint3
140          iorq->timeout = total_timeout;          iorq->timeout = total_timeout;
141          iorq->itv_timeout = interval_timeout;          iorq->itv_timeout = interval_timeout;
142          iorq->buffer = buffer;          iorq->buffer = buffer;
143            iorq->offset = offset;
144          return True;          return True;
145  }  }
146    
# Line 152  void Line 164  void
164  rdpdr_send_name(void)  rdpdr_send_name(void)
165  {  {
166          uint8 magic[4] = "rDNC";          uint8 magic[4] = "rDNC";
         uint32 hostlen = (strlen(hostname) + 1) * 2;  
167          STREAM s;          STREAM s;
168            uint32 hostlen;
169    
170            if (NULL == g_rdpdr_clientname) {
171              g_rdpdr_clientname = hostname;
172            }
173            hostlen = (strlen(g_rdpdr_clientname) + 1) * 2;
174    
175          s = channel_init(rdpdr_channel, 16 + hostlen);          s = channel_init(rdpdr_channel, 16 + hostlen);
176          out_uint8a(s, magic, 4);          out_uint8a(s, magic, 4);
# Line 161  rdpdr_send_name(void) Line 178  rdpdr_send_name(void)
178          out_uint16_le(s, 0x72);          out_uint16_le(s, 0x72);
179          out_uint32(s, 0);          out_uint32(s, 0);
180          out_uint32_le(s, hostlen);          out_uint32_le(s, hostlen);
181          rdp_out_unistr(s, hostname, hostlen - 2);          rdp_out_unistr(s, g_rdpdr_clientname, hostlen - 2);
182          s_mark_end(s);          s_mark_end(s);
183          channel_send(s, rdpdr_channel);          channel_send(s, rdpdr_channel);
184  }  }
# Line 233  rdpdr_send_available(void) Line 250  rdpdr_send_available(void)
250                                  rdp_out_unistr(s, printerinfo->printer, printerlen - 2);                                  rdp_out_unistr(s, printerinfo->printer, printerlen - 2);
251                                  out_uint8a(s, printerinfo->blob, bloblen);                                  out_uint8a(s, printerinfo->blob, bloblen);
252    
253                                  xfree(printerinfo->blob);       /* Blob is sent twice if reconnecting */                                  if (printerinfo->blob)
254                                            xfree(printerinfo->blob);       /* Blob is sent twice if reconnecting */
255                                  break;                                  break;
256                          default:                          default:
257                                  out_uint32(s, 0);                                  out_uint32(s, 0);
# Line 329  rdpdr_process_irp(STREAM s) Line 347  rdpdr_process_irp(STREAM s)
347    
348                  case DEVICE_TYPE_DISK:                  case DEVICE_TYPE_DISK:
349    
                         /*rw_blocking = False; */  
350                          fns = &disk_fns;                          fns = &disk_fns;
351                            rw_blocking = False;
352                          break;                          break;
353    
354                  case DEVICE_TYPE_SCARD:                  case DEVICE_TYPE_SCARD:
# Line 396  rdpdr_process_irp(STREAM s) Line 414  rdpdr_process_irp(STREAM s)
414  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
415                          DEBUG(("RDPDR IRP Read (length: %d, offset: %d)\n", length, offset));                          DEBUG(("RDPDR IRP Read (length: %d, offset: %d)\n", length, offset));
416  #endif  #endif
417                            if (!rdpdr_handle_ok(device, file))
418                            {
419                                    status = STATUS_INVALID_HANDLE;
420                                    break;
421                            }
422    
423                          if (rw_blocking)        // Complete read immediately                          if (rw_blocking)        // Complete read immediately
424                          {                          {
425                                  buffer = (uint8 *) xrealloc((void *) buffer, length);                                  buffer = (uint8 *) xrealloc((void *) buffer, length);
426                                    if (!buffer)
427                                    {
428                                            status = STATUS_CANCELLED;
429                                            break;
430                                    }
431                                  status = fns->read(file, buffer, length, offset, &result);                                  status = fns->read(file, buffer, length, offset, &result);
432                                  buffer_len = result;                                  buffer_len = result;
433                                  break;                                  break;
# Line 406  rdpdr_process_irp(STREAM s) Line 435  rdpdr_process_irp(STREAM s)
435    
436                          // Add request to table                          // Add request to table
437                          pst_buf = (uint8 *) xmalloc(length);                          pst_buf = (uint8 *) xmalloc(length);
438                            if (!pst_buf)
439                            {
440                                    status = STATUS_CANCELLED;
441                                    break;
442                            }
443                          serial_get_timeout(file, length, &total_timeout, &interval_timeout);                          serial_get_timeout(file, length, &total_timeout, &interval_timeout);
444                          if (add_async_iorequest                          if (add_async_iorequest
445                              (device, file, id, major, length, fns, total_timeout, interval_timeout,                              (device, file, id, major, length, fns, total_timeout, interval_timeout,
446                               pst_buf))                               pst_buf, offset))
447                          {                          {
448                                  status = STATUS_PENDING;                                  status = STATUS_PENDING;
449                                  break;                                  break;
# Line 433  rdpdr_process_irp(STREAM s) Line 467  rdpdr_process_irp(STREAM s)
467  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
468                          DEBUG(("RDPDR IRP Write (length: %d)\n", result));                          DEBUG(("RDPDR IRP Write (length: %d)\n", result));
469  #endif  #endif
470                            if (!rdpdr_handle_ok(device, file))
471                            {
472                                    status = STATUS_INVALID_HANDLE;
473                                    break;
474                            }
475    
476                          if (rw_blocking)        // Complete immediately                          if (rw_blocking)        // Complete immediately
477                          {                          {
478                                  status = fns->write(file, s->p, length, offset, &result);                                  status = fns->write(file, s->p, length, offset, &result);
# Line 441  rdpdr_process_irp(STREAM s) Line 481  rdpdr_process_irp(STREAM s)
481    
482                          // Add to table                          // Add to table
483                          pst_buf = (uint8 *) xmalloc(length);                          pst_buf = (uint8 *) xmalloc(length);
484                            if (!pst_buf)
485                            {
486                                    status = STATUS_CANCELLED;
487                                    break;
488                            }
489    
490                          in_uint8a(s, pst_buf, length);                          in_uint8a(s, pst_buf, length);
491    
492                          if (add_async_iorequest                          if (add_async_iorequest
493                              (device, file, id, major, length, fns, 0, 0, pst_buf))                              (device, file, id, major, length, fns, 0, 0, pst_buf, offset))
494                          {                          {
495                                  status = STATUS_PENDING;                                  status = STATUS_PENDING;
496                                  break;                                  break;
# Line 564  rdpdr_process_irp(STREAM s) Line 610  rdpdr_process_irp(STREAM s)
610                          in_uint8s(s, 0x14);                          in_uint8s(s, 0x14);
611    
612                          buffer = (uint8 *) xrealloc((void *) buffer, bytes_out + 0x14);                          buffer = (uint8 *) xrealloc((void *) buffer, bytes_out + 0x14);
613                            if (!buffer)
614                            {
615                                    status = STATUS_CANCELLED;
616                                    break;
617                            }
618    
619                          out.data = out.p = buffer;                          out.data = out.p = buffer;
620                          out.size = sizeof(buffer);                          out.size = sizeof(buffer);
621                          status = fns->device_control(file, request, s, &out);                          status = fns->device_control(file, request, s, &out);
# Line 579  rdpdr_process_irp(STREAM s) Line 631  rdpdr_process_irp(STREAM s)
631          {          {
632                  rdpdr_send_completion(device, id, status, result, buffer, buffer_len);                  rdpdr_send_completion(device, id, status, result, buffer, buffer_len);
633          }          }
634          xfree(buffer);          if (buffer)
635                    xfree(buffer);
636            buffer = NULL;
637  }  }
638    
639  void  void
# Line 699  rdpdr_init() Line 752  rdpdr_init()
752  void  void
753  rdpdr_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv, BOOL * timeout)  rdpdr_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv, BOOL * timeout)
754  {  {
755          long select_timeout = 0;        // Timeout value to be used for select() (in millisecons).          uint32 select_timeout = 0;      // Timeout value to be used for select() (in millisecons).
756          struct async_iorequest *iorq;          struct async_iorequest *iorq;
757    
758          iorq = &g_iorequest;          iorq = g_iorequest;
759          while (iorq != NULL)          while (iorq != NULL)
760          {          {
761                  if (iorq->fd != 0)                  if (iorq->fd != 0)
# Line 739  rdpdr_add_fds(int *n, fd_set * rfds, fd_ Line 792  rdpdr_add_fds(int *n, fd_set * rfds, fd_
792          }          }
793  }  }
794    
795    struct async_iorequest *
796    rdpdr_remove_iorequest(struct async_iorequest *prev, struct async_iorequest *iorq)
797    {
798            if (!iorq)
799                    return NULL;
800    
801            if (iorq->buffer)
802                    xfree(iorq->buffer);
803            if (prev)
804            {
805                    prev->next = iorq->next;
806                    xfree(iorq);
807                    iorq = prev->next;
808            }
809            else
810            {
811                    // Even if NULL
812                    g_iorequest = iorq->next;
813                    xfree(iorq);
814                    iorq = NULL;
815            }
816            return iorq;
817    }
818    
819  /* Check if select() returned with one of the rdpdr file descriptors, and complete io if it did */  /* Check if select() returned with one of the rdpdr file descriptors, and complete io if it did */
820  void  void
# Line 749  rdpdr_check_fds(fd_set * rfds, fd_set * Line 825  rdpdr_check_fds(fd_set * rfds, fd_set *
825          DEVICE_FNS *fns;          DEVICE_FNS *fns;
826          struct async_iorequest *iorq;          struct async_iorequest *iorq;
827          struct async_iorequest *prev;          struct async_iorequest *prev;
828            uint32 req_size = 0;
829    
830          if (timed_out)          if (timed_out)
831          {          {
# Line 756  rdpdr_check_fds(fd_set * rfds, fd_set * Line 833  rdpdr_check_fds(fd_set * rfds, fd_set *
833                  return;                  return;
834          }          }
835    
836          iorq = &g_iorequest;          iorq = g_iorequest;
837          prev = NULL;          prev = NULL;
838          while (iorq != NULL)          while (iorq != NULL)
839          {          {
   
840                  if (iorq->fd != 0)                  if (iorq->fd != 0)
841                  {                  {
842                          switch (iorq->major)                          switch (iorq->major)
# Line 770  rdpdr_check_fds(fd_set * rfds, fd_set * Line 846  rdpdr_check_fds(fd_set * rfds, fd_set *
846                                          {                                          {
847                                                  /* Read the data */                                                  /* Read the data */
848                                                  fns = iorq->fns;                                                  fns = iorq->fns;
849    
850                                                    req_size =
851                                                            (iorq->length - iorq->partial_len) >
852                                                            8192 ? 8192 : (iorq->length -
853                                                                           iorq->partial_len);
854                                                    /* never read larger chunks than 8k - chances are that it will block */
855                                                  status = fns->read(iorq->fd,                                                  status = fns->read(iorq->fd,
856                                                                     iorq->buffer + iorq->partial_len,                                                                     iorq->buffer + iorq->partial_len,
857                                                                     iorq->length - iorq->partial_len,                                                                     req_size, iorq->offset, &result);
858                                                                     0, &result);  
859                                                  iorq->partial_len += result;                                                  if (result > 0)
860                                                    {
861                                                            iorq->partial_len += result;
862                                                            iorq->offset += result;
863                                                    }
864  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
865                                                  DEBUG(("RDPDR: %d bytes of data read\n", result));                                                  DEBUG(("RDPDR: %d bytes of data read\n", result));
866  #endif  #endif
867                                                  /* only delete link if all data has been transfered */                                                  /* only delete link if all data has been transfered */
868                                                  if (iorq->partial_len == iorq->length)                                                  /* or if result was 0 and status success - EOF      */
869                                                    if ((iorq->partial_len == iorq->length) ||
870                                                        (result == 0))
871                                                  {                                                  {
872                                                          /* send the data */  #if WITH_DEBUG_RDP5
873                                                          status = STATUS_SUCCESS;                                                          DEBUG(("RDPDR: AIO total %u bytes read of %u\n", iorq->partial_len, iorq->length));
874    #endif
875                                                          rdpdr_send_completion(iorq->device,                                                          rdpdr_send_completion(iorq->device,
876                                                                                iorq->id, status,                                                                                iorq->id, status,
877                                                                                iorq->length,                                                                                iorq->partial_len,
878                                                                                iorq->buffer, result);                                                                                iorq->buffer,
879                                                                                  iorq->partial_len);
880                                                          xfree(iorq->buffer);                                                          iorq = rdpdr_remove_iorequest(prev, iorq);
                                                         iorq->fd = 0;  
                                                         if (prev != NULL)  
                                                         {  
                                                                 prev->next = iorq->next;  
                                                                 xfree(iorq);  
                                                         }  
881                                                  }                                                  }
882                                          }                                          }
883                                          break;                                          break;
# Line 803  rdpdr_check_fds(fd_set * rfds, fd_set * Line 886  rdpdr_check_fds(fd_set * rfds, fd_set *
886                                          {                                          {
887                                                  /* Write data. */                                                  /* Write data. */
888                                                  fns = iorq->fns;                                                  fns = iorq->fns;
889    
890                                                    req_size =
891                                                            (iorq->length - iorq->partial_len) >
892                                                            8192 ? 8192 : (iorq->length -
893                                                                           iorq->partial_len);
894    
895                                                    /* never write larger chunks than 8k - chances are that it will block */
896                                                  status = fns->write(iorq->fd,                                                  status = fns->write(iorq->fd,
897                                                                      iorq->buffer +                                                                      iorq->buffer +
898                                                                      iorq->partial_len,                                                                      iorq->partial_len, req_size,
899                                                                      iorq->length -                                                                      iorq->offset, &result);
900                                                                      iorq->partial_len, 0, &result);  
901                                                  iorq->partial_len += result;                                                  if (result > 0)
902                                                    {
903                                                            iorq->partial_len += result;
904                                                            iorq->offset += result;
905                                                    }
906    
907  #if WITH_DEBUG_RDP5  #if WITH_DEBUG_RDP5
908                                                  DEBUG(("RDPDR: %d bytes of data written\n",                                                  DEBUG(("RDPDR: %d bytes of data written\n",
909                                                         result));                                                         result));
910  #endif  #endif
911                                                  /* only delete link if all data has been transfered */                                                  /* only delete link if all data has been transfered */
912                                                  if (iorq->partial_len == iorq->length)                                                  /* or we couldn't write */
913                                                    if ((iorq->partial_len == iorq->length)
914                                                        || (result == 0))
915                                                  {                                                  {
916                                                          /* send a status success */  #if WITH_DEBUG_RDP5
917                                                          status = STATUS_SUCCESS;                                                          DEBUG(("RDPDR: AIO total %u bytes written of %u\n", iorq->partial_len, iorq->length));
918    #endif
919                                                          rdpdr_send_completion(iorq->device,                                                          rdpdr_send_completion(iorq->device,
920                                                                                iorq->id, status,                                                                                iorq->id, status,
921                                                                                iorq->length, "", 1);                                                                                iorq->partial_len,
922                                                                                  (uint8 *) "", 1);
923    
924                                                          xfree(iorq->buffer);                                                          iorq = rdpdr_remove_iorequest(prev, iorq);
                                                         iorq->fd = 0;  
                                                         if (prev != NULL)  
                                                         {  
                                                                 prev->next = iorq->next;  
                                                                 xfree(iorq);  
                                                         }  
925                                                  }                                                  }
926                                          }                                          }
927                                          break;                                          break;
# Line 836  rdpdr_check_fds(fd_set * rfds, fd_set * Line 929  rdpdr_check_fds(fd_set * rfds, fd_set *
929    
930                  }                  }
931                  prev = iorq;                  prev = iorq;
932                  iorq = iorq->next;                  if (iorq)
933                            iorq = iorq->next;
934          }          }
935    
936  }  }
# Line 849  rdpdr_abort_io(uint32 fd, uint32 major, Line 943  rdpdr_abort_io(uint32 fd, uint32 major,
943          struct async_iorequest *iorq;          struct async_iorequest *iorq;
944          struct async_iorequest *prev;          struct async_iorequest *prev;
945    
946          iorq = &g_iorequest;          iorq = g_iorequest;
947          prev = NULL;          prev = NULL;
948          while (iorq != NULL)          while (iorq != NULL)
949          {          {
# Line 858  rdpdr_abort_io(uint32 fd, uint32 major, Line 952  rdpdr_abort_io(uint32 fd, uint32 major,
952                  if ((iorq->fd == fd) && (major == 0 || iorq->major == major))                  if ((iorq->fd == fd) && (major == 0 || iorq->major == major))
953                  {                  {
954                          result = 0;                          result = 0;
955                          rdpdr_send_completion(iorq->device, iorq->id, status, result, "", 1);                          rdpdr_send_completion(iorq->device, iorq->id, status, result, (uint8 *) "",
956                          xfree(iorq->buffer);                                                1);
957                          iorq->fd = 0;  
958                          if (prev != NULL)                          iorq = rdpdr_remove_iorequest(prev, iorq);
                         {  
                                 prev->next = iorq->next;  
                                 xfree(iorq);  
                         }  
959                          return True;                          return True;
960                  }                  }
961    

Legend:
Removed from v.592  
changed lines
  Added in v.650

  ViewVC Help
Powered by ViewVC 1.1.26