/[rdesktop]/sourceforge.net/branches/seamlessrdp-branch/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/branches/seamlessrdp-branch/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 609 by stargo, Mon Feb 16 20:28:09 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 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;
76  #endif  #endif
77    
78    extern RDPDR_DEVICE g_rdpdr_device[];
79    extern uint32 g_num_devices;
80    
81  #ifdef RDP2VNC  #ifdef RDP2VNC
82  extern int rfb_port;  extern int rfb_port;
83  extern int defer_time;  extern int defer_time;
# Line 103  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 111  usage(char *program) Line 117  usage(char *program)
117          fprintf(stderr, "   -K: keep window manager key bindings\n");          fprintf(stderr, "   -K: keep window manager key bindings\n");
118          fprintf(stderr, "   -S: caption button size (single application mode)\n");          fprintf(stderr, "   -S: caption button size (single application mode)\n");
119          fprintf(stderr, "   -T: window title\n");          fprintf(stderr, "   -T: window title\n");
120          fprintf(stderr, "   -N: enable numlock synchronisation\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 (currently: sound)\n");          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");
123            fprintf(stderr,
124                    "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");
125            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");
129            fprintf(stderr,
130                    "         '-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");
133            fprintf(stderr,
134                    "             or       mydeskjet=\"HP LaserJet IIIP\" to enter server driver as well\n");
135            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");
138          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 237  main(int argc, char *argv[])
237          uint32 flags;          uint32 flags;
238          char *p;          char *p;
239          int c;          int c;
240    
241          int username_option = 0;          int username_option = 0;
242    
243          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
# Line 225  main(int argc, char *argv[]) Line 245  main(int argc, char *argv[])
245          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
246          strcpy(keymapname, "en-us");          strcpy(keymapname, "en-us");
247    
248            g_num_devices = 0;
249    
250  #ifdef RDP2VNC  #ifdef RDP2VNC
251  #define VNCOPT "V:Q:"  #define VNCOPT "V:Q:"
252  #else  #else
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 327  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 385  main(int argc, char *argv[]) Line 411  main(int argc, char *argv[])
411                                  break;                                  break;
412    
413                          case 'r':                          case 'r':
414                                  if (!strcmp(optarg, "sound"))  
415                                    if (strncmp("sound", optarg, 5) == 0)
416                                    {
417  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
418                                          g_rdpsnd = True;                                          g_rdpsnd = True;
419  #else  #else
420                                          warning("Not compiled with sound support");                                          warning("Not compiled with sound support");
421  #endif  #endif
422                                    }
423                                    else if (strncmp("disk", optarg, 4) == 0)
424                                    {
425                                            /* -r disk:h:=/mnt/floppy */
426                                            disk_enum_devices(&g_num_devices, optarg + 4);
427                                    }
428                                    else if (strncmp("comport", optarg, 7) == 0)
429                                    {
430                                            serial_enum_devices(&g_num_devices, optarg + 7);
431                                    }
432                                    else if (strncmp("lptport", optarg, 7) == 0)
433                                    {
434                                            parallel_enum_devices(&g_num_devices, optarg + 7);
435                                    }
436                                    else if (strncmp("printer", optarg, 7) == 0)
437                                    {
438                                            printer_enum_devices(&g_num_devices, optarg + 7);
439                                    }
440                                    else
441                                    {
442                                            warning("Unknown -r argument\n\n\tPossible arguments are: comport, disk, lptport, printer, sound\n");
443                                    }
444                                  break;                                  break;
445    
446                          case '0':                          case '0':
# Line 470  main(int argc, char *argv[]) Line 520  main(int argc, char *argv[])
520          if (g_rdpsnd)          if (g_rdpsnd)
521                  rdpsnd_init();                  rdpsnd_init();
522  #endif  #endif
523          /* rdpdr_init(); */          rdpdr_init();
524    
525          if (!rdp_connect(server, flags, domain, password, shell, directory))          if (!rdp_connect(server, flags, domain, password, shell, directory))
526                  return 1;                  return 1;
# Line 660  unimpl(char *format, ...) Line 710  unimpl(char *format, ...)
710    
711  /* produce a hex dump */  /* produce a hex dump */
712  void  void
713  hexdump(unsigned char *p, int len)  hexdump(unsigned char *p, unsigned int len)
714  {  {
715          unsigned char *line = p;          unsigned char *line = p;
716          int i, thisline, offset = 0;          int i, thisline, offset = 0;
# Line 687  hexdump(unsigned char *p, int len) Line 737  hexdump(unsigned char *p, int len)
737          }          }
738  }  }
739    
740    /*
741      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
745            succesive executions, like in a while loop
746            if retval is 0, then there are no more args.
747      pitfalls:
748            src is modified. 0x00 chars are inserted to
749            terminate strings.
750            return val, points on the next val chr after ins
751            0x00
752    
753            example usage:
754            while( (pos = next_arg( optarg, ',')) ){
755                    printf("%s\n",optarg);
756                    optarg=pos;
757            }
758    
759    */
760    char *
761    next_arg(char *src, char needle)
762    {
763            char *nextval;
764            char *p;
765            char *mvp = 0;
766    
767            /* EOS */
768            if (*src == (char) 0x00)
769                    return 0;
770    
771            p = src;
772            /*  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)
798            {
799                    *nextval = (char) 0x00;
800                    return ++nextval;
801            }
802    
803            /* no more args after this, jump to EOS */
804            nextval = src + strlen(src);
805            return nextval;
806    }
807    
808    
809    void
810    toupper_str(char *p)
811    {
812            while (*p)
813            {
814                    if ((*p >= 'a') && (*p <= 'z'))
815                            *p = toupper((int) *p);
816                    p++;
817            }
818    }
819    
820    
821    /* not all clibs got ltoa */
822    #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)
823    
824    char *
825    l_to_a(long N, int base)
826    {
827            static char ret[LTOA_BUFSIZE];
828    
829            char *head = ret, buf[LTOA_BUFSIZE], *tail = buf + sizeof(buf);
830    
831            register int divrem;
832    
833            if (base < 36 || 2 > base)
834                    base = 10;
835    
836            if (N < 0)
837            {
838                    *head++ = '-';
839                    N = -N;
840            }
841    
842            tail = buf + sizeof(buf);
843            *--tail = 0;
844    
845            do
846            {
847                    divrem = N % base;
848                    *--tail = (divrem <= 9) ? divrem + '0' : divrem + 'a' - 10;
849                    N /= base;
850            }
851            while (N);
852    
853            strcpy(head, tail);
854            return ret;
855    }
856    
857    
858  int  int
859  load_licence(unsigned char **data)  load_licence(unsigned char **data)

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

  ViewVC Help
Powered by ViewVC 1.1.26