/[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 82 by astrand, Tue Jul 30 07:18:48 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 = 0x409;          /* Defaults to US keyboard layout */
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 40  BOOL licence = True; Line 43  BOOL licence = True;
43  BOOL encryption = True;  BOOL encryption = True;
44  BOOL desktop_save = True;  BOOL desktop_save = True;
45  BOOL fullscreen = False;  BOOL fullscreen = False;
46    BOOL grab_keyboard = True;
47    
48  /* Display usage information */  /* Display usage information */
49  static void  static void
# Line 52  usage(char *program) Line 56  usage(char *program)
56          printf("   -c: working directory\n");          printf("   -c: working directory\n");
57          printf("   -p: password (autologon)\n");          printf("   -p: password (autologon)\n");
58          printf("   -n: client hostname\n");          printf("   -n: client hostname\n");
59          printf("   -k: keyboard layout (hex)\n");          printf("   -k: keyboard layout on terminal server (us,sv,gr etc.)\n");
60          printf("   -g: desktop geometry (WxH)\n");          printf("   -g: desktop geometry (WxH)\n");
61          printf("   -f: full-screen mode\n");          printf("   -f: full-screen mode\n");
62          printf("   -b: force bitmap updates\n");          printf("   -b: force bitmap updates\n");
63          printf("   -e: disable encryption (French TS)\n");          printf("   -e: disable encryption (French TS)\n");
64          printf("   -m: do not send motion events\n");          printf("   -m: do not send motion events\n");
65          printf("   -l: do not request licence\n\n");          printf("   -l: do not request licence\n");
66            printf("   -t: rdp tcp port\n");
67            printf("   -K: keep window manager key bindings\n");
68  }  }
69    
70  /* Client program */  /* Client program */
# Line 82  main(int argc, char *argv[]) Line 88  main(int argc, char *argv[])
88    
89          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
90          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
91            strcpy(keymapname, "us");
92    
93          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:fbemlKh?")) != -1)
94          {          {
95                  switch (c)                  switch (c)
96                  {                  {
# Line 113  main(int argc, char *argv[]) Line 120  main(int argc, char *argv[])
120                                  break;                                  break;
121    
122                          case 'k':                          case 'k':
123                                  keylayout = strtol(optarg, NULL, 16);                                  STRNCPY(keymapname, optarg, sizeof(keymapname));
                                 if (keylayout == 0)  
                                 {  
                                         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 'K':
163                                    grab_keyboard = False;
164                                    break;
165    
166                          case 'h':                          case 'h':
167                          case '?':                          case '?':
168                          default:                          default:
# Line 216  main(int argc, char *argv[]) Line 226  main(int argc, char *argv[])
226          strcpy(title, "rdesktop - ");          strcpy(title, "rdesktop - ");
227          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));
228    
229            xkeymap_init1();
230            if (!ui_init())
231                    return 1;
232    
233            if (!rdp_connect(server, flags, domain, password, shell, directory))
234                    return 1;
235    
236            printf("Connection successful.\n");
237    
238          if (ui_create_window(title))          if (ui_create_window(title))
239          {          {
                 if (!rdp_connect(server, flags, domain, password, shell,  
                                  directory))  
                         return 1;  
   
                 printf("Connection successful.\n");  
240                  rdp_main_loop();                  rdp_main_loop();
241                  ui_destroy_window();                  ui_destroy_window();
242          }          }
243    
244            printf("Disconnecting...\n");
245          rdp_disconnect();          rdp_disconnect();
246          return 0;          return 0;
247  }  }
248    
249  /* Generate a 32-byte random for the secure transport code. */  /* Generate a 32-byte random for the secure transport code. */
250  void  void
251  generate_random(uint8 *random)  generate_random(uint8 * random)
252  {  {
253          struct stat st;          struct stat st;
254          struct tms tmsbuf;          struct tms tmsbuf;
# Line 338  hexdump(unsigned char *p, unsigned int l Line 353  hexdump(unsigned char *p, unsigned int l
353                          printf("%02x ", line[i]);                          printf("%02x ", line[i]);
354    
355                  for (; i < 16; i++)                  for (; i < 16; i++)
356                                  printf("   ");                          printf("   ");
357    
358                  for (i = 0; i < thisline; i++)                  for (i = 0; i < thisline; i++)
359                          printf("%c",                          printf("%c", (line[i] >= 0x20 && line[i] < 0x7f) ? line[i] : '.');
                                (line[i] >= 0x20  
                                 && line[i] < 0x7f) ? line[i] : '.');  
360    
361                  printf("\n");                  printf("\n");
362                  offset += thisline;                  offset += thisline;
363                  line += thisline;                  line += thisline;
364          }          }
365  }  }
366    
367    int
368    load_licence(unsigned char **data)
369    {
370            char path[PATH_MAX];
371            char *home;
372            struct stat st;
373            int fd;
374    
375            home = getenv("HOME");
376            if (home == NULL)
377                    return -1;
378    
379            STRNCPY(path, home, sizeof(path));
380            strncat(path, "/.rdesktop/licence", sizeof(path) - strlen(path) - 1);
381    
382            fd = open(path, O_RDONLY);
383            if (fd == -1)
384                    return -1;
385    
386            if (fstat(fd, &st))
387                    return -1;
388    
389            *data = xmalloc(st.st_size);
390            return read(fd, *data, st.st_size);
391    }
392    
393    void
394    save_licence(unsigned char *data, int length)
395    {
396            char path[PATH_MAX];
397            char *home;
398            int fd;
399    
400            home = getenv("HOME");
401            if (home == NULL)
402                    return;
403    
404            STRNCPY(path, home, sizeof(path));
405            strncat(path, "/.rdesktop", sizeof(path) - strlen(path) - 1);
406            mkdir(path, 0700);
407    
408            strncat(path, "/licence", sizeof(path) - strlen(path) - 1);
409    
410            fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0600);
411            if (fd == -1)
412            {
413                    perror("open");
414                    return;
415            }
416    
417            write(fd, data, length);
418            close(fd);
419    }

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

  ViewVC Help
Powered by ViewVC 1.1.26