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

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

revision 569 by n-ki, Wed Jan 21 14:40:40 2004 UTC revision 609 by stargo, Mon Feb 16 20:28:09 2004 UTC
# Line 26  Line 26 
26  #include <sys/stat.h>           /* stat */  #include <sys/stat.h>           /* stat */
27  #include <sys/time.h>           /* gettimeofday */  #include <sys/time.h>           /* gettimeofday */
28  #include <sys/times.h>          /* times */  #include <sys/times.h>          /* times */
29    #include <ctype.h>              /* toupper */
30  #include <errno.h>  #include <errno.h>
31  #include "rdesktop.h"  #include "rdesktop.h"
32    
# Line 68  BOOL g_use_rdp5 = True; Line 69  BOOL g_use_rdp5 = True;
69  BOOL g_console_session = False;  BOOL g_console_session = False;
70  BOOL g_numlock_sync = False;  BOOL g_numlock_sync = False;
71  extern BOOL g_owncolmap;  extern BOOL g_owncolmap;
72    extern BOOL g_ownbackstore;
73    
74  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
75  BOOL g_rdpsnd = False;  BOOL g_rdpsnd = False;
# Line 106  usage(char *program) Line 108  usage(char *program)
108          fprintf(stderr, "   -g: desktop geometry (WxH)\n");          fprintf(stderr, "   -g: desktop geometry (WxH)\n");
109          fprintf(stderr, "   -f: full-screen mode\n");          fprintf(stderr, "   -f: full-screen mode\n");
110          fprintf(stderr, "   -b: force bitmap updates\n");          fprintf(stderr, "   -b: force bitmap updates\n");
111            fprintf(stderr, "   -B: use BackingStore of X-server (if available)\n");
112          fprintf(stderr, "   -e: disable encryption (French TS)\n");          fprintf(stderr, "   -e: disable encryption (French TS)\n");
113          fprintf(stderr, "   -E: disable encryption from client to server\n");          fprintf(stderr, "   -E: disable encryption from client to server\n");
114          fprintf(stderr, "   -m: do not send motion events\n");          fprintf(stderr, "   -m: do not send motion events\n");
# Line 117  usage(char *program) Line 120  usage(char *program)
120          fprintf(stderr, "   -N: enable numlock syncronization\n");          fprintf(stderr, "   -N: enable numlock syncronization\n");
121          fprintf(stderr, "   -a: connection colour depth\n");          fprintf(stderr, "   -a: connection colour depth\n");
122          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");
123          fprintf(stderr, "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");          fprintf(stderr,
124          fprintf(stderr, "             or    :COM1=/dev/ttyS0:9600,0|1|2,0|2,5|6|7|8:dtr \n");                  "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");
125          fprintf(stderr, "         '-r disk:A=/mnt/floppy': enable redirection of /mnt/floppy to A:\n");          fprintf(stderr, "             or      COM1=/dev/ttyS0,COM2=/dev/ttyS1\n");
126            fprintf(stderr,
127                    "         '-r disk:A=/mnt/floppy': enable redirection of /mnt/floppy to A:\n");
128          fprintf(stderr, "             or   A=/mnt/floppy,D=/mnt/cdrom'\n");          fprintf(stderr, "             or   A=/mnt/floppy,D=/mnt/cdrom'\n");
129          fprintf(stderr, "         '-r lptport:LPT1=/dev/lp0': enable parallel redirection of /dev/lp0 to LPT1\n");          fprintf(stderr,
130          fprintf(stderr, "             or       LPT1=/dev/lp0,LPT2=/dev/lp1\n");                  "         '-r lptport:LPT1=/dev/lp0': enable parallel redirection of /dev/lp0 to LPT1\n");
131            fprintf(stderr, "             or      LPT1=/dev/lp0,LPT2=/dev/lp1\n");
132          fprintf(stderr, "         '-r printer:mydeskjet': enable printer redirection\n");          fprintf(stderr, "         '-r printer:mydeskjet': enable printer redirection\n");
133          fprintf(stderr, "             or       mydeskjet:\"HP Laserjet IIIP\" to enter server driver as well\n");          fprintf(stderr,
134                    "             or       mydeskjet=\"HP LaserJet IIIP\" to enter server driver as well\n");
135          fprintf(stderr, "         '-r sound': enable sound redirection\n");          fprintf(stderr, "         '-r sound': enable sound redirection\n");
136          fprintf(stderr, "   -0: attach to console\n");          fprintf(stderr, "   -0: attach to console\n");
137          fprintf(stderr, "   -4: use RDP version 4\n");          fprintf(stderr, "   -4: use RDP version 4\n");
# Line 246  main(int argc, char *argv[]) Line 253  main(int argc, char *argv[])
253  #define VNCOPT  #define VNCOPT
254  #endif  #endif
255    
256          while ((c = getopt(argc, argv, VNCOPT "u:d:s:c:p:n:k:g:fbeEmCDKS:T:Na:r:045h?")) != -1)          while ((c = getopt(argc, argv, VNCOPT "u:d:s:c:p:n:k:g:fbBeEmCDKS:T:Na:r:045h?")) != -1)
257          {          {
258                  switch (c)                  switch (c)
259                  {                  {
# Line 342  main(int argc, char *argv[]) Line 349  main(int argc, char *argv[])
349                                  g_orders = False;                                  g_orders = False;
350                                  break;                                  break;
351    
352                            case 'B':
353                                    g_ownbackstore = False;
354                                    break;
355    
356                          case 'e':                          case 'e':
357                                  g_encryption = False;                                  g_encryption = False;
358                                  break;                                  break;
# Line 727  hexdump(unsigned char *p, unsigned int l Line 738  hexdump(unsigned char *p, unsigned int l
738  }  }
739    
740  /*  /*
741    input: src is the string we look in for needle    input: src is the string we look in for needle.
742             Needle may be escaped by a backslash, in
743             that case we ignore that particular needle.
744    return value: returns next src pointer, for    return value: returns next src pointer, for
745          succesive executions, like in a while loop          succesive executions, like in a while loop
746          if retval is 0, then there are no more args.          if retval is 0, then there are no more args.
# Line 748  char * Line 761  char *
761  next_arg(char *src, char needle)  next_arg(char *src, char needle)
762  {  {
763          char *nextval;          char *nextval;
764            char *p;
765            char *mvp = 0;
766    
767          // EOS          /* EOS */
768          if (*src == (char) 0x00)          if (*src == (char) 0x00)
769                  return 0;                  return 0;
770    
771          // more args available.          p = src;
772          nextval = strchr(src, needle);          /*  skip escaped needles */
773            while ((nextval = strchr(p, needle)))
774            {
775                    mvp = nextval - 1;
776                    /* found backslashed needle */
777                    if (*mvp == '\\' && (mvp > src))
778                    {
779                            /* move string one to the left */
780                            while (*(mvp + 1) != (char) 0x00)
781                            {
782                                    *mvp = *(mvp + 1);
783                                    *mvp++;
784                            }
785                            *mvp = (char) 0x00;
786                            p = nextval;
787                    }
788                    else
789                    {
790                            p = nextval + 1;
791                            break;
792                    }
793    
794            }
795    
796            /* more args available */
797          if (nextval)          if (nextval)
798          {          {
799                  *nextval = (char) 0x00;                  *nextval = (char) 0x00;
800                  return ++nextval;                  return ++nextval;
801          }          }
802    
803          // no more args after this, jump to EOS          /* no more args after this, jump to EOS */
804          nextval = src + strlen(src);          nextval = src + strlen(src);
805          return nextval;          return nextval;
806  }  }
807    
808    
809  char *  void
810  toupper(char* p)  toupper_str(char *p)
811  {  {
812          while( *p ){          while (*p)
813                  if( (*p >= 'a') && (*p <= 'z') )          {
814                          *p = *p - 32;                  if ((*p >= 'a') && (*p <= 'z'))
815                            *p = toupper((int) *p);
816                  p++;                  p++;
817          }          }
818  }  }
# Line 782  toupper(char* p) Line 822  toupper(char* p)
822  #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)  #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)
823    
824  char *  char *
825  ltoa(long N, int base)  l_to_a(long N, int base)
826  {  {
827          static char ret[LTOA_BUFSIZE];          static char ret[LTOA_BUFSIZE];
828    
829          register int i = 2;          char *head = ret, buf[LTOA_BUFSIZE], *tail = buf + sizeof(buf);
         long uarg;  
         char *tail, *head = ret, buf[LTOA_BUFSIZE];  
830    
831          if (36 < base || 2 > base)          register int divrem;
                 base = 10;  
832    
833          tail = &buf[LTOA_BUFSIZE - 1];          if (base < 36 || 2 > base)
834          *tail-- = '\0';                  base = 10;
835    
836          if (10 == base && N < 0L)          if (N < 0)
837          {          {
838                  *head++ = '-';                  *head++ = '-';
839                  uarg = -N;                  N = -N;
840          }          }
         else  
                 uarg = N;  
841    
842          if (uarg)          tail = buf + sizeof(buf);
843          {          *--tail = 0;
                 for (i = 1; uarg; ++i)  
                 {  
                         register ldiv_t r;  
844    
845                          r = ldiv(uarg, base);          do
846                          *tail-- = (char) (r.rem + ((9L < r.rem) ? ('A' - 10L) : '0'));          {
847                          uarg = r.quot;                  divrem = N % base;
848                  }                  *--tail = (divrem <= 9) ? divrem + '0' : divrem + 'a' - 10;
849                    N /= base;
850          }          }
851          else          while (N);
                 *tail-- = '0';  
852    
853          memcpy(head, ++tail, i);          strcpy(head, tail);
854          return ret;          return ret;
855  }  }
856    

Legend:
Removed from v.569  
changed lines
  Added in v.609

  ViewVC Help
Powered by ViewVC 1.1.26