/[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 567 by matthewc, Wed Jan 21 11:08:39 2004 UTC revision 608 by astrand, Sun Feb 15 21:19:28 2004 UTC
# Line 1  Line 1 
1  /* -*- c-basic-offset: 8 -*-  /* -*- c-basic-offset: 8 -*-
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Entrypoint and utility functions     Entrypoint and utility functions
4     Copyright (C) Matthew Chapman 1999-2004     Copyright (C) Matthew Chapman 1999-2003
5    
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# 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 73  extern BOOL g_owncolmap; Line 74  extern BOOL g_owncolmap;
74  BOOL g_rdpsnd = False;  BOOL g_rdpsnd = False;
75  #endif  #endif
76    
77    extern RDPDR_DEVICE g_rdpdr_device[];
78    extern uint32 g_num_devices;
79    
80  #ifdef RDP2VNC  #ifdef RDP2VNC
81  extern int rfb_port;  extern int rfb_port;
82  extern int defer_time;  extern int defer_time;
# Line 111  usage(char *program) Line 115  usage(char *program)
115          fprintf(stderr, "   -K: keep window manager key bindings\n");          fprintf(stderr, "   -K: keep window manager key bindings\n");
116          fprintf(stderr, "   -S: caption button size (single application mode)\n");          fprintf(stderr, "   -S: caption button size (single application mode)\n");
117          fprintf(stderr, "   -T: window title\n");          fprintf(stderr, "   -T: window title\n");
118          fprintf(stderr, "   -N: enable numlock synchronisation\n");          fprintf(stderr, "   -N: enable numlock syncronization\n");
119          fprintf(stderr, "   -a: connection colour depth\n");          fprintf(stderr, "   -a: connection colour depth\n");
120          fprintf(stderr, "   -r: enable specified device redirection (currently: sound)\n");          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");
121            fprintf(stderr,
122                    "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");
123            fprintf(stderr, "             or      COM1=/dev/ttyS0,COM2=/dev/ttyS1\n");
124            fprintf(stderr,
125                    "         '-r disk:A=/mnt/floppy': enable redirection of /mnt/floppy to A:\n");
126            fprintf(stderr, "             or   A=/mnt/floppy,D=/mnt/cdrom'\n");
127            fprintf(stderr,
128                    "         '-r lptport:LPT1=/dev/lp0': enable parallel redirection of /dev/lp0 to LPT1\n");
129            fprintf(stderr, "             or      LPT1=/dev/lp0,LPT2=/dev/lp1\n");
130            fprintf(stderr, "         '-r printer:mydeskjet': enable printer redirection\n");
131            fprintf(stderr,
132                    "             or       mydeskjet=\"HP LaserJet IIIP\" to enter server driver as well\n");
133            fprintf(stderr, "         '-r sound': enable sound redirection\n");
134          fprintf(stderr, "   -0: attach to console\n");          fprintf(stderr, "   -0: attach to console\n");
135          fprintf(stderr, "   -4: use RDP version 4\n");          fprintf(stderr, "   -4: use RDP version 4\n");
136          fprintf(stderr, "   -5: use RDP version 5 (default)\n");          fprintf(stderr, "   -5: use RDP version 5 (default)\n");
# Line 218  main(int argc, char *argv[]) Line 235  main(int argc, char *argv[])
235          uint32 flags;          uint32 flags;
236          char *p;          char *p;
237          int c;          int c;
238    
239          int username_option = 0;          int username_option = 0;
240    
241          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
# Line 225  main(int argc, char *argv[]) Line 243  main(int argc, char *argv[])
243          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
244          strcpy(keymapname, "en-us");          strcpy(keymapname, "en-us");
245    
246            g_num_devices = 0;
247    
248  #ifdef RDP2VNC  #ifdef RDP2VNC
249  #define VNCOPT "V:Q:"  #define VNCOPT "V:Q:"
250  #else  #else
# Line 385  main(int argc, char *argv[]) Line 405  main(int argc, char *argv[])
405                                  break;                                  break;
406    
407                          case 'r':                          case 'r':
408                                  if (!strcmp(optarg, "sound"))  
409                                    if (strncmp("sound", optarg, 5) == 0)
410                                    {
411  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
412                                          g_rdpsnd = True;                                          g_rdpsnd = True;
413  #else  #else
414                                          warning("Not compiled with sound support");                                          warning("Not compiled with sound support");
415  #endif  #endif
416                                    }
417                                    else if (strncmp("disk", optarg, 4) == 0)
418                                    {
419                                            /* -r disk:h:=/mnt/floppy */
420                                            disk_enum_devices(&g_num_devices, optarg + 4);
421                                    }
422                                    else if (strncmp("comport", optarg, 7) == 0)
423                                    {
424                                            serial_enum_devices(&g_num_devices, optarg + 7);
425                                    }
426                                    else if (strncmp("lptport", optarg, 7) == 0)
427                                    {
428                                            parallel_enum_devices(&g_num_devices, optarg + 7);
429                                    }
430                                    else if (strncmp("printer", optarg, 7) == 0)
431                                    {
432                                            printer_enum_devices(&g_num_devices, optarg + 7);
433                                    }
434                                    else
435                                    {
436                                            warning("Unknown -r argument\n\n\tPossible arguments are: comport, disk, lptport, printer, sound\n");
437                                    }
438                                  break;                                  break;
439    
440                          case '0':                          case '0':
# Line 470  main(int argc, char *argv[]) Line 514  main(int argc, char *argv[])
514          if (g_rdpsnd)          if (g_rdpsnd)
515                  rdpsnd_init();                  rdpsnd_init();
516  #endif  #endif
517          /* rdpdr_init(); */          rdpdr_init();
518    
519          if (!rdp_connect(server, flags, domain, password, shell, directory))          if (!rdp_connect(server, flags, domain, password, shell, directory))
520                  return 1;                  return 1;
# Line 660  unimpl(char *format, ...) Line 704  unimpl(char *format, ...)
704    
705  /* produce a hex dump */  /* produce a hex dump */
706  void  void
707  hexdump(unsigned char *p, int len)  hexdump(unsigned char *p, unsigned int len)
708  {  {
709          unsigned char *line = p;          unsigned char *line = p;
710          int i, thisline, offset = 0;          int i, thisline, offset = 0;
# Line 687  hexdump(unsigned char *p, int len) Line 731  hexdump(unsigned char *p, int len)
731          }          }
732  }  }
733    
734    /*
735      input: src is the string we look in for needle.
736             Needle may be escaped by a backslash, in
737             that case we ignore that particular needle.
738      return value: returns next src pointer, for
739            succesive executions, like in a while loop
740            if retval is 0, then there are no more args.
741      pitfalls:
742            src is modified. 0x00 chars are inserted to
743            terminate strings.
744            return val, points on the next val chr after ins
745            0x00
746    
747            example usage:
748            while( (pos = next_arg( optarg, ',')) ){
749                    printf("%s\n",optarg);
750                    optarg=pos;
751            }
752    
753    */
754    char *
755    next_arg(char *src, char needle)
756    {
757            char *nextval;
758            char *p;
759            char *mvp = 0;
760    
761            /* EOS */
762            if (*src == (char) 0x00)
763                    return 0;
764    
765            p = src;
766            /*  skip escaped needles */
767            while ((nextval = strchr(p, needle)))
768            {
769                    mvp = nextval - 1;
770                    /* found backslashed needle */
771                    if (*mvp == '\\' && (mvp > src))
772                    {
773                            /* move string one to the left */
774                            while (*(mvp + 1) != (char) 0x00)
775                            {
776                                    *mvp = *(mvp + 1);
777                                    *mvp++;
778                            }
779                            *mvp = (char) 0x00;
780                            p = nextval;
781                    }
782                    else
783                    {
784                            p = nextval + 1;
785                            break;
786                    }
787    
788            }
789    
790            /* more args available */
791            if (nextval)
792            {
793                    *nextval = (char) 0x00;
794                    return ++nextval;
795            }
796    
797            /* no more args after this, jump to EOS */
798            nextval = src + strlen(src);
799            return nextval;
800    }
801    
802    
803    void
804    toupper_str(char *p)
805    {
806            while (*p)
807            {
808                    if ((*p >= 'a') && (*p <= 'z'))
809                            *p = toupper((int) *p);
810                    p++;
811            }
812    }
813    
814    
815    /* not all clibs got ltoa */
816    #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)
817    
818    char *
819    l_to_a(long N, int base)
820    {
821            static char ret[LTOA_BUFSIZE];
822    
823            char *head = ret, buf[LTOA_BUFSIZE], *tail = buf + sizeof(buf);
824    
825            register int divrem;
826    
827            if (base < 36 || 2 > base)
828                    base = 10;
829    
830            if (N < 0)
831            {
832                    *head++ = '-';
833                    N = -N;
834            }
835    
836            tail = buf + sizeof(buf);
837            *--tail = 0;
838    
839            do
840            {
841                    divrem = N % base;
842                    *--tail = (divrem <= 9) ? divrem + '0' : divrem + 'a' - 10;
843                    N /= base;
844            }
845            while (N);
846    
847            strcpy(head, tail);
848            return ret;
849    }
850    
851    
852  int  int
853  load_licence(unsigned char **data)  load_licence(unsigned char **data)

Legend:
Removed from v.567  
changed lines
  Added in v.608

  ViewVC Help
Powered by ViewVC 1.1.26