/[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 64 by astrand, Thu Jul 18 16:38:31 2002 UTC revision 82 by astrand, Tue Jul 30 07:18:48 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;  int tcp_port_rdp = TCP_PORT_RDP;
# Line 43  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 55  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");          printf("   -l: do not request licence\n");
66          printf("   -t: rdp tcp port\n\n");          printf("   -t: rdp tcp port\n");
67            printf("   -K: keep window manager key bindings\n");
68  }  }
69    
70  /* Client program */  /* Client program */
# Line 81  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          printf("Version " VERSION ". Copyright (C) 1999-2001 Matt Chapman.\n");
                ". Copyright (C) 1999-2001 Matt Chapman.\n");  
87          printf("See http://www.rdesktop.org/ for more information.\n\n");          printf("See http://www.rdesktop.org/ for more information.\n\n");
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");          strcpy(keymapname, "us");
92    
93          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:t: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 119  main(int argc, char *argv[]) Line 120  main(int argc, char *argv[])
120                                  break;                                  break;
121    
122                          case 'k':                          case 'k':
123                                  STRNCPY(keymapname, optarg,                                  STRNCPY(keymapname, optarg, sizeof(keymapname));
                                         sizeof(keymapname));  
124                                  break;                                  break;
125    
126                          case 'g':                          case 'g':
# Line 159  main(int argc, char *argv[]) Line 159  main(int argc, char *argv[])
159                                  tcp_port_rdp = strtol(optarg, NULL, 10);                                  tcp_port_rdp = strtol(optarg, NULL, 10);
160                                  break;                                  break;
161    
162                            case 'K':
163                                    grab_keyboard = False;
164                                    break;
165    
166                          case 'h':                          case 'h':
167                          case '?':                          case '?':
168                          default:                          default:
# Line 222  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))          if (!rdp_connect(server, flags, domain, password, shell, directory))
234                  return 1;                  return 1;
235    
# Line 348  hexdump(unsigned char *p, unsigned int l Line 356  hexdump(unsigned char *p, unsigned int l
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;

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

  ViewVC Help
Powered by ViewVC 1.1.26