/[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 39 by matthewc, Fri Apr 5 07:57:43 2002 UTC revision 81 by jsorg71, Tue Jul 30 01:57:39 2002 UTC
# Line 32  Line 32 
32  char username[16];  char username[16];
33  char hostname[16];  char hostname[16];
34  char keymapname[16];  char keymapname[16];
35  int keylayout;  int keylayout = 0x409;          /* Defaults to US keyboard layout */
36  int width;  int width;
37  int height;  int height;
38    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 42  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 54  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\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 79  main(int argc, char *argv[]) Line 83  main(int argc, char *argv[])
83          int c;          int c;
84    
85          printf("rdesktop: A Remote Desktop Protocol client.\n");          printf("rdesktop: A Remote Desktop Protocol client.\n");
86          printf("Version " VERSION ". Copyright (C) 1999-2001 Matt Chapman.\n");          printf("Version " VERSION
87                   ". Copyright (C) 1999-2001 Matt Chapman.\n");
88          printf("See http://www.rdesktop.org/ for more information.\n\n");          printf("See http://www.rdesktop.org/ for more information.\n\n");
89    
90          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
91          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
92          strcpy(keymapname, "us");          strcpy(keymapname, "us");
93    
94          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)
95          {          {
96                  switch (c)                  switch (c)
97                  {                  {
# Line 116  main(int argc, char *argv[]) Line 121  main(int argc, char *argv[])
121                                  break;                                  break;
122    
123                          case 'k':                          case 'k':
124                                  STRNCPY(keymapname, optarg, sizeof(keymapname));                                  STRNCPY(keymapname, optarg,
125                                            sizeof(keymapname));
126                                  break;                                  break;
127    
128                          case 'g':                          case 'g':
129                                  width = strtol(optarg, &p, 10);                                  width = strtol(optarg, &p, 10);
130                                  if (*p == 'x')                                  if (*p == 'x')
131                                          height = strtol(p+1, NULL, 10);                                          height = strtol(p + 1, NULL, 10);
132    
133                                  if ((width == 0) || (height == 0))                                  if ((width == 0) || (height == 0))
134                                  {                                  {
# Line 151  main(int argc, char *argv[]) Line 157  main(int argc, char *argv[])
157                                  licence = False;                                  licence = False;
158                                  break;                                  break;
159    
160                            case 't':
161                                    tcp_port_rdp = strtol(optarg, NULL, 10);
162                                    break;
163    
164                            case 'K':
165                                    grab_keyboard = False;
166                                    break;
167    
168                          case 'h':                          case 'h':
169                          case '?':                          case '?':
170                          default:                          default:
# Line 214  main(int argc, char *argv[]) Line 228  main(int argc, char *argv[])
228          strcpy(title, "rdesktop - ");          strcpy(title, "rdesktop - ");
229          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));
230    
231            xkeymap_init1();
232            if(!ui_init())
233              return 1;
234    
235            if (!rdp_connect(server, flags, domain, password, shell, directory))
236                    return 1;
237    
238            printf("Connection successful.\n");
239    
240          if (ui_create_window(title))          if (ui_create_window(title))
241          {          {
                 if (!rdp_connect(server, flags, domain, password, shell,  
                                  directory))  
                         return 1;  
   
                 printf("Connection successful.\n");  
242                  rdp_main_loop();                  rdp_main_loop();
                 printf("Disconnecting...\n");  
243                  ui_destroy_window();                  ui_destroy_window();
                 rdp_disconnect();  
244          }          }
245    
246            printf("Disconnecting...\n");
247            rdp_disconnect();
248          return 0;          return 0;
249  }  }
250    
251  /* Generate a 32-byte random for the secure transport code. */  /* Generate a 32-byte random for the secure transport code. */
252  void  void
253  generate_random(uint8 *random)  generate_random(uint8 * random)
254  {  {
255          struct stat st;          struct stat st;
256          struct tms tmsbuf;          struct tms tmsbuf;
# Line 337  hexdump(unsigned char *p, unsigned int l Line 355  hexdump(unsigned char *p, unsigned int l
355                          printf("%02x ", line[i]);                          printf("%02x ", line[i]);
356    
357                  for (; i < 16; i++)                  for (; i < 16; i++)
358                                  printf("   ");                          printf("   ");
359    
360                  for (i = 0; i < thisline; i++)                  for (i = 0; i < thisline; i++)
361                          printf("%c",                          printf("%c",
# Line 363  load_licence(unsigned char **data) Line 381  load_licence(unsigned char **data)
381                  return -1;                  return -1;
382    
383          STRNCPY(path, home, sizeof(path));          STRNCPY(path, home, sizeof(path));
384          strncat(path, "/.rdesktop/licence", sizeof(path)-strlen(path)-1);          strncat(path, "/.rdesktop/licence", sizeof(path) - strlen(path) - 1);
385    
386          fd = open(path, O_RDONLY);          fd = open(path, O_RDONLY);
387          if (fd == -1)          if (fd == -1)
# Line 388  save_licence(unsigned char *data, int le Line 406  save_licence(unsigned char *data, int le
406                  return;                  return;
407    
408          STRNCPY(path, home, sizeof(path));          STRNCPY(path, home, sizeof(path));
409          strncat(path, "/.rdesktop", sizeof(path)-strlen(path)-1);          strncat(path, "/.rdesktop", sizeof(path) - strlen(path) - 1);
410          mkdir(path, 0700);          mkdir(path, 0700);
411    
412          strncat(path, "/licence", sizeof(path)-strlen(path)-1);          strncat(path, "/licence", sizeof(path) - strlen(path) - 1);
413    
414          fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0600);          fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0600);
415          if (fd == -1)          if (fd == -1)
416          {          {
417                  perror("open");                  perror("open");
# Line 403  save_licence(unsigned char *data, int le Line 421  save_licence(unsigned char *data, int le
421          write(fd, data, length);          write(fd, data, length);
422          close(fd);          close(fd);
423  }  }
   

Legend:
Removed from v.39  
changed lines
  Added in v.81

  ViewVC Help
Powered by ViewVC 1.1.26