/[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 30 by matty, Fri Sep 14 13:51:38 2001 UTC revision 64 by astrand, Thu Jul 18 16:38:31 2002 UTC
# Line 23  Line 23 
23  #include <unistd.h>             /* read close getuid getgid getpid getppid gethostname */  #include <unistd.h>             /* read close getuid getgid getpid getppid gethostname */
24  #include <fcntl.h>              /* open */  #include <fcntl.h>              /* open */
25  #include <pwd.h>                /* getpwuid */  #include <pwd.h>                /* getpwuid */
26    #include <limits.h>             /* PATH_MAX */
27  #include <sys/stat.h>           /* stat */  #include <sys/stat.h>           /* stat */
28  #include <sys/time.h>           /* gettimeofday */  #include <sys/time.h>           /* gettimeofday */
29  #include <sys/times.h>          /* times */  #include <sys/times.h>          /* times */
# Line 30  Line 31 
31    
32  char username[16];  char username[16];
33  char hostname[16];  char hostname[16];
34    char keymapname[16];
35    int keylayout;
36  int width;  int width;
37  int height;  int height;
38  int keylayout = 0x409;  int tcp_port_rdp = TCP_PORT_RDP;
39  BOOL bitmap_compression = True;  BOOL bitmap_compression = True;
40  BOOL sendmotion = True;  BOOL sendmotion = True;
41  BOOL orders = True;  BOOL orders = True;
# Line 52  usage(char *program) Line 55  usage(char *program)
55          printf("   -c: working directory\n");          printf("   -c: working directory\n");
56          printf("   -p: password (autologon)\n");          printf("   -p: password (autologon)\n");
57          printf("   -n: client hostname\n");          printf("   -n: client hostname\n");
58          printf("   -k: keyboard layout (hex)\n");          printf("   -k: keyboard layout\n");
59          printf("   -g: desktop geometry (WxH)\n");          printf("   -g: desktop geometry (WxH)\n");
60          printf("   -f: full-screen mode\n");          printf("   -f: full-screen mode\n");
61          printf("   -b: force bitmap updates\n");          printf("   -b: force bitmap updates\n");
62          printf("   -e: disable encryption (French TS)\n");          printf("   -e: disable encryption (French TS)\n");
63          printf("   -m: do not send motion events\n");          printf("   -m: do not send motion events\n");
64          printf("   -l: do not request licence\n\n");          printf("   -l: do not request licence\n");
65            printf("   -t: rdp tcp port\n\n");
66  }  }
67    
68  /* Client program */  /* Client program */
# Line 77  main(int argc, char *argv[]) Line 81  main(int argc, char *argv[])
81          int c;          int c;
82    
83          printf("rdesktop: A Remote Desktop Protocol client.\n");          printf("rdesktop: A Remote Desktop Protocol client.\n");
84          printf("Version " VERSION ". Copyright (C) 1999-2001 Matt Chapman.\n");          printf("Version " VERSION
85                   ". Copyright (C) 1999-2001 Matt Chapman.\n");
86          printf("See http://www.rdesktop.org/ for more information.\n\n");          printf("See http://www.rdesktop.org/ for more information.\n\n");
87    
88          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
89          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
90            strcpy(keymapname, "us");
91    
92          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:fbemlh?")) != -1)          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:t:fbemlh?")) != -1)
93          {          {
94                  switch (c)                  switch (c)
95                  {                  {
# Line 113  main(int argc, char *argv[]) Line 119  main(int argc, char *argv[])
119                                  break;                                  break;
120    
121                          case 'k':                          case 'k':
122                                  keylayout = strtol(optarg, NULL, 16);                                  STRNCPY(keymapname, optarg,
123                                  if (keylayout == 0)                                          sizeof(keymapname));
                                 {  
                                         error("invalid keyboard layout\n");  
                                         return 1;  
                                 }  
124                                  break;                                  break;
125    
126                          case 'g':                          case 'g':
127                                  width = strtol(optarg, &p, 10);                                  width = strtol(optarg, &p, 10);
128                                  if (*p == 'x')                                  if (*p == 'x')
129                                          height = strtol(p+1, NULL, 10);                                          height = strtol(p + 1, NULL, 10);
130    
131                                  if ((width == 0) || (height == 0))                                  if ((width == 0) || (height == 0))
132                                  {                                  {
# Line 153  main(int argc, char *argv[]) Line 155  main(int argc, char *argv[])
155                                  licence = False;                                  licence = False;
156                                  break;                                  break;
157    
158                            case 't':
159                                    tcp_port_rdp = strtol(optarg, NULL, 10);
160                                    break;
161    
162                          case 'h':                          case 'h':
163                          case '?':                          case '?':
164                          default:                          default:
# Line 216  main(int argc, char *argv[]) Line 222  main(int argc, char *argv[])
222          strcpy(title, "rdesktop - ");          strcpy(title, "rdesktop - ");
223          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));
224    
225            if (!rdp_connect(server, flags, domain, password, shell, directory))
226                    return 1;
227    
228            printf("Connection successful.\n");
229    
230          if (ui_create_window(title))          if (ui_create_window(title))
231          {          {
                 if (!rdp_connect(server, flags, domain, password, shell,  
                                  directory))  
                         return 1;  
   
                 printf("Connection successful.\n");  
232                  rdp_main_loop();                  rdp_main_loop();
233                  ui_destroy_window();                  ui_destroy_window();
234          }          }
235    
236            printf("Disconnecting...\n");
237          rdp_disconnect();          rdp_disconnect();
238          return 0;          return 0;
239  }  }
240    
241  /* Generate a 32-byte random for the secure transport code. */  /* Generate a 32-byte random for the secure transport code. */
242  void  void
243  generate_random(uint8 *random)  generate_random(uint8 * random)
244  {  {
245          struct stat st;          struct stat st;
246          struct tms tmsbuf;          struct tms tmsbuf;
# Line 338  hexdump(unsigned char *p, unsigned int l Line 345  hexdump(unsigned char *p, unsigned int l
345                          printf("%02x ", line[i]);                          printf("%02x ", line[i]);
346    
347                  for (; i < 16; i++)                  for (; i < 16; i++)
348                                  printf("   ");                          printf("   ");
349    
350                  for (i = 0; i < thisline; i++)                  for (i = 0; i < thisline; i++)
351                          printf("%c",                          printf("%c",
# Line 350  hexdump(unsigned char *p, unsigned int l Line 357  hexdump(unsigned char *p, unsigned int l
357                  line += thisline;                  line += thisline;
358          }          }
359  }  }
360    
361    int
362    load_licence(unsigned char **data)
363    {
364            char path[PATH_MAX];
365            char *home;
366            struct stat st;
367            int fd;
368    
369            home = getenv("HOME");
370            if (home == NULL)
371                    return -1;
372    
373            STRNCPY(path, home, sizeof(path));
374            strncat(path, "/.rdesktop/licence", sizeof(path) - strlen(path) - 1);
375    
376            fd = open(path, O_RDONLY);
377            if (fd == -1)
378                    return -1;
379    
380            if (fstat(fd, &st))
381                    return -1;
382    
383            *data = xmalloc(st.st_size);
384            return read(fd, *data, st.st_size);
385    }
386    
387    void
388    save_licence(unsigned char *data, int length)
389    {
390            char path[PATH_MAX];
391            char *home;
392            int fd;
393    
394            home = getenv("HOME");
395            if (home == NULL)
396                    return;
397    
398            STRNCPY(path, home, sizeof(path));
399            strncat(path, "/.rdesktop", sizeof(path) - strlen(path) - 1);
400            mkdir(path, 0700);
401    
402            strncat(path, "/licence", sizeof(path) - strlen(path) - 1);
403    
404            fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0600);
405            if (fd == -1)
406            {
407                    perror("open");
408                    return;
409            }
410    
411            write(fd, data, length);
412            close(fd);
413    }

Legend:
Removed from v.30  
changed lines
  Added in v.64

  ViewVC Help
Powered by ViewVC 1.1.26