/[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 22 by matty, Tue Oct 17 06:12:31 2000 UTC revision 28 by matty, Wed Jun 20 13:54:48 2001 UTC
# Line 18  Line 18 
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */  */
20    
21  #include <stdlib.h>     /* malloc realloc free */  #include <stdlib.h>             /* malloc realloc free */
22  #include <unistd.h>     /* read close getuid getgid getpid getppid gethostname */  #include <unistd.h>             /* read close getuid getgid getpid getppid gethostname */
23  #include <fcntl.h>      /* open */  #include <fcntl.h>              /* open */
24  #include <pwd.h>        /* getpwuid */  #include <pwd.h>                /* getpwuid */
25  #include <sys/stat.h>   /* stat */  #include <sys/stat.h>           /* stat */
26  #include <sys/time.h>   /* gettimeofday */  #include <sys/time.h>           /* gettimeofday */
27  #include <sys/times.h>  /* times */  #include <sys/times.h>          /* times */
28  #include "rdesktop.h"  #include "rdesktop.h"
29    
30  char username[16];  char username[16];
# Line 32  char hostname[16]; Line 32  char hostname[16];
32  int width = 800;  int width = 800;
33  int height = 600;  int height = 600;
34  int keylayout = 0x409;  int keylayout = 0x409;
35    BOOL bitmap_compression = True;
36  BOOL motion = True;  BOOL motion = True;
37  BOOL orders = True;  BOOL orders = True;
38  BOOL licence = True;  BOOL licence = True;
39    BOOL use_encryption = True;
40    BOOL desktop_save = True;
41    BOOL grab_keyboard = True;
42    BOOL fullscreen = False;
43    int private_colormap = False;
44    
45  /* Display usage information */  /* Display usage information */
46  static void usage(char *program)  static void
47    usage(char *program)
48  {  {
49          STATUS("Usage: %s [options] server\n", program);          STATUS("Usage: %s [options] server\n", program);
50          STATUS("   -u: user name\n");          STATUS("   -u: user name\n");
# Line 55  static void usage(char *program) Line 62  static void usage(char *program)
62  }  }
63    
64  /* Client program */  /* Client program */
65  int main(int argc, char *argv[])  int
66    main(int argc, char *argv[])
67  {  {
68          struct passwd *pw;          struct passwd *pw;
69          char *server;          char *server;
# Line 68  int main(int argc, char *argv[]) Line 76  int main(int argc, char *argv[])
76          int c;          int c;
77    
78          STATUS("rdesktop: A Remote Desktop Protocol client.\n");          STATUS("rdesktop: A Remote Desktop Protocol client.\n");
79          STATUS("Version "VERSION". Copyright (C) 1999-2000 Matt Chapman.\n");          STATUS("Version " VERSION
80                   ". Copyright (C) 1999-2000 Matt Chapman.\n");
81          STATUS("See http://www.rdesktop.org/ for more information.\n\n");          STATUS("See http://www.rdesktop.org/ for more information.\n\n");
82    
83          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
# Line 102  int main(int argc, char *argv[]) Line 111  int main(int argc, char *argv[])
111                          case 'n':                          case 'n':
112                                  strncpy(hostname, optarg, sizeof(hostname));                                  strncpy(hostname, optarg, sizeof(hostname));
113                                  break;                                  break;
114                            case 'g':
115                          case 'w':                                  {
116                                  width = strtol(optarg, NULL, 10);                                          char *tgem = 0;
117                                  break;                                          width = strtol(optarg, NULL, 10);
118                                            tgem = strchr(optarg, 'x');
119                          case 'h':                                          if ((tgem == 0) || (strlen(tgem) < 2))
120                                  height = strtol(optarg, NULL, 10);                                          {
121                                                    ERROR
122                                                            ("-g: invalid parameter. Syntax example: -g 1024x768\n");
123                                                    exit(1);
124                                            }
125                                            height = strtol(tgem + 1, NULL, 10);
126                                    }
127                                  break;                                  break;
128    
129                          case 'k':                          case 'k':
130                                  keylayout = strtol(optarg, NULL, 16);                                  keylayout = strtol(optarg, NULL, 16);
131                                    /* keylayout = find_keyb_code(optarg); */
132                                    if (keylayout == 0)
133                                            return 0;
134                                  break;                                  break;
135    
136                          case 'm':                          case 'm':
# Line 127  int main(int argc, char *argv[]) Line 145  int main(int argc, char *argv[])
145                                  licence = False;                                  licence = False;
146                                  break;                                  break;
147    
148                            case 'e':
149                                    use_encryption = False;
150                                    break;
151                            case 'K':
152                                    grab_keyboard = False;
153                                    break;
154                            case 'F':
155                                    fullscreen = True;
156                                    break;
157                            case 'v':
158                                    private_colormap = True;
159                                    break;
160                            case 'h':
161                          case '?':                          case '?':
162                          default:                          default:
163                                  usage(argv[0]);                                  usage(argv[0]);
# Line 163  int main(int argc, char *argv[]) Line 194  int main(int argc, char *argv[])
194                  }                  }
195          }          }
196    
         if (!rdp_connect(server, flags, domain, password, shell, directory))  
                 return 1;  
   
         STATUS("Connection successful.\n");  
   
197          strcpy(title, "rdesktop - ");          strcpy(title, "rdesktop - ");
198          strncat(title, server, sizeof(title));          strncat(title, server, sizeof(title));
199    
200          if (ui_create_window(title))          if (ui_create_window(title))
201          {          {
202                    if (!rdp_connect(server, flags, domain, password, shell,
203                                     directory))
204                            return 1;
205    
206                    STATUS("Connection successful.\n");
207                  rdp_main_loop();                  rdp_main_loop();
208                  ui_destroy_window();                  ui_destroy_window();
209          }          }
# Line 182  int main(int argc, char *argv[]) Line 213  int main(int argc, char *argv[])
213  }  }
214    
215  /* Generate a 32-byte random for the secure transport code. */  /* Generate a 32-byte random for the secure transport code. */
216  void generate_random(uint8 *random)  void
217    generate_random(uint8 *random)
218  {  {
219          struct stat st;          struct stat st;
220          struct tms tmsbuf;          struct tms tmsbuf;
221          uint32 *r = (uint32 *)random;          uint32 *r = (uint32 *) random;
222          int fd;          int fd;
223    
224          /* If we have a kernel random device, use it. */          /* If we have a kernel random device, use it. */
# Line 200  void generate_random(uint8 *random) Line 232  void generate_random(uint8 *random)
232          /* Otherwise use whatever entropy we can gather - ideas welcome. */          /* Otherwise use whatever entropy we can gather - ideas welcome. */
233          r[0] = (getpid()) | (getppid() << 16);          r[0] = (getpid()) | (getppid() << 16);
234          r[1] = (getuid()) | (getgid() << 16);          r[1] = (getuid()) | (getgid() << 16);
235          r[2] = times(&tmsbuf); /* system uptime (clocks) */          r[2] = times(&tmsbuf);  /* system uptime (clocks) */
236          gettimeofday((struct timeval *)&r[3], NULL); /* sec and usec */          gettimeofday((struct timeval *) &r[3], NULL);   /* sec and usec */
237          stat("/tmp", &st);          stat("/tmp", &st);
238          r[5] = st.st_atime;          r[5] = st.st_atime;
239          r[6] = st.st_mtime;          r[6] = st.st_mtime;
# Line 209  void generate_random(uint8 *random) Line 241  void generate_random(uint8 *random)
241  }  }
242    
243  /* malloc; exit if out of memory */  /* malloc; exit if out of memory */
244  void *xmalloc(int size)  void *
245    xmalloc(int size)
246  {  {
247          void *mem = malloc(size);          void *mem = malloc(size);
248          if (mem == NULL)          if (mem == NULL)
# Line 221  void *xmalloc(int size) Line 254  void *xmalloc(int size)
254  }  }
255    
256  /* realloc; exit if out of memory */  /* realloc; exit if out of memory */
257  void *xrealloc(void *oldmem, int size)  void *
258    xrealloc(void *oldmem, int size)
259  {  {
260          void *mem = realloc(oldmem, size);          void *mem = realloc(oldmem, size);
261          if (mem == NULL)          if (mem == NULL)
# Line 233  void *xrealloc(void *oldmem, int size) Line 267  void *xrealloc(void *oldmem, int size)
267  }  }
268    
269  /* free */  /* free */
270  void xfree(void *mem)  void
271    xfree(void *mem)
272  {  {
273          free(mem);          free(mem);
274  }  }
275    
276  /* Produce a hex dump */  /* Produce a hex dump */
277  void hexdump(unsigned char *p, unsigned int len)  void
278    hexdump(unsigned char *p, unsigned int len)
279  {  {
280          unsigned char *line = p;          unsigned char *line = p;
281          unsigned int thisline, offset = 0;          unsigned int thisline, offset = 0;
# Line 253  void hexdump(unsigned char *p, unsigned Line 289  void hexdump(unsigned char *p, unsigned
289                          thisline = 16;                          thisline = 16;
290    
291                  for (i = 0; i < thisline; i++)                  for (i = 0; i < thisline; i++)
292                          STATUS("%02x ", line[i])                          STATUS("%02x ", line[i]) for (; i < 16; i++)
293                                    STATUS("   ");
                 for (; i < 16; i++)  
                         STATUS("   ");  
294    
295                  for (i = 0; i < thisline; i++)                  for (i = 0; i < thisline; i++)
296                          STATUS("%c", (line[i] >= 0x20 && line[i] < 0x7f) ? line[i] : '.');                          STATUS("%c",
297                                   (line[i] >= 0x20
298                                    && line[i] < 0x7f) ? line[i] : '.');
299    
300                  STATUS("\n");                  STATUS("\n");
301                  offset += thisline;                  offset += thisline;

Legend:
Removed from v.22  
changed lines
  Added in v.28

  ViewVC Help
Powered by ViewVC 1.1.26