/[rdesktop]/jpeg/rdesktop/trunk/disk.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 /jpeg/rdesktop/trunk/disk.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 827 by astrand, Thu Mar 3 08:48:24 2005 UTC revision 879 by astrand, Sun Apr 3 18:08:05 2005 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    
 #include "rdesktop.h"  
21  #include "disk.h"  #include "disk.h"
22    
23  #include <sys/types.h>  #include <sys/types.h>
# Line 38  Line 37 
37  #define DIRFD(a) ((a)->DIR_FD_MEMBER_NAME)  #define DIRFD(a) ((a)->DIR_FD_MEMBER_NAME)
38  #endif  #endif
39    
40  /* TODO: let autoconf figure out everything below... */  /* TODO: Fix mntent-handling for solaris
41  #if (defined(sun) && (defined(__svr4__) || defined(__SVR4)))   * #include <sys/mntent.h> */
42  #define SOLARIS  #if (defined(HAVE_MNTENT_H) && defined(HAVE_SETMNTENT))
43    #include <mntent.h>
44    #define MNTENT_PATH "/etc/mtab"
45    #define USE_SETMNTENT
46  #endif  #endif
47    
48  #if (defined(SOLARIS) || defined (__hpux) || defined(__BEOS__))  #ifdef HAVE_SYS_VFS_H
49  #include <sys/statvfs.h>        /* solaris statvfs */  #include <sys/vfs.h>
50  /* TODO: Fix mntent-handling for solaris/hpux  #endif
51   * #include <sys/mntent.h> */  
52  #undef HAVE_MNTENT_H  #ifdef HAVE_SYS_STATVFS_H
53  #define MNTENT_PATH "/etc/mnttab"  #include <sys/statvfs.h>
54  #define STATFS_FN(path, buf) (statvfs(path,buf))  #endif
 #define STATFS_T statvfs  
 #define F_NAMELEN(buf) ((buf).f_namemax)  
55    
56  #elif (defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__APPLE__))  #ifdef HAVE_SYS_STATFS_H
57    #include <sys/statfs.h>
58    #endif
59    
60    #ifdef HAVE_SYS_PARAM_H
61  #include <sys/param.h>  #include <sys/param.h>
62    #endif
63    
64    #ifdef HAVE_SYS_MOUNT_H
65  #include <sys/mount.h>  #include <sys/mount.h>
66  #define STATFS_FN(path, buf) (statfs(path,buf))  #endif
67    
68    #include "rdesktop.h"
69    
70    #ifdef STAT_STATFS3_OSF1
71    #define STATFS_FN(path, buf) (statfs(path,buf,sizeof(buf)))
72  #define STATFS_T statfs  #define STATFS_T statfs
73  #define F_NAMELEN(buf) (NAME_MAX)  #define USE_STATFS
74    #endif
75    
76  #elif (defined(__SGI_IRIX__))  #ifdef STAT_STATVFS
 #include <sys/types.h>  
 #include <sys/statvfs.h>  
77  #define STATFS_FN(path, buf) (statvfs(path,buf))  #define STATFS_FN(path, buf) (statvfs(path,buf))
78  #define STATFS_T statvfs  #define STATFS_T statvfs
79  #define F_NAMELEN(buf) ((buf).f_namemax)  #define USE_STATVFS
80    #endif
81    
82  #elif (defined(__alpha) && !defined(linux))  #ifdef STAT_STATVFS64
83  #include <sys/mount.h>          /* osf1 statfs */  #define STATFS_FN(path, buf) (statvfs64(path,buf))
84  #define STATFS_FN(path, buf) (statfs(path,buf,sizeof(buf)))  #define STATFS_T statvfs64
85  #define STATFS_T statfs  #define USE_STATVFS
86  #define F_NAMELEN(buf) (255)  #endif
87    
88  #else  #if (defined(STAT_STATFS2_FS_DATA) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS2_FSIZE))
 #include <sys/vfs.h>            /* linux statfs */  
 #include <mntent.h>  
 #define HAVE_MNTENT_H  
 #define MNTENT_PATH "/etc/mtab"  
89  #define STATFS_FN(path, buf) (statfs(path,buf))  #define STATFS_FN(path, buf) (statfs(path,buf))
90  #define STATFS_T statfs  #define STATFS_T statfs
91    #define USE_STATFS
92    #endif
93    
94    #ifdef STAT_STATFS4
95    #define STATFS_FN(path, buf) (statfs(path,buf,sizeof(buf),0))
96    #define STATFS_T statfs
97    #define USE_STATFS
98    #endif
99    
100    #if ((defined(USE_STATFS) && defined(HAVE_STRUCT_STATFS_F_NAMEMAX)) || (defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_NAMEMAX)))
101    #define F_NAMELEN(buf) ((buf).f_namemax)
102    #endif
103    
104    #if ((defined(USE_STATFS) && defined(HAVE_STRUCT_STATFS_F_NAMELEN)) || (defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_NAMELEN)))
105  #define F_NAMELEN(buf) ((buf).f_namelen)  #define F_NAMELEN(buf) ((buf).f_namelen)
106  #endif  #endif
107    
108    #ifndef F_NAMELEN
109    #define F_NAMELEN(buf) (255)
110    #endif
111    
112    /* Dummy statfs fallback */
113    #ifndef STATFS_T
114    struct dummy_statfs_t
115    {
116            long f_bfree;
117            long f_bsize;
118            long f_blocks;
119            int f_namelen;
120            int f_namemax;
121    };
122    
123    int
124    dummy_statfs(struct dummy_statfs_t *buf)
125    {
126            buf->f_blocks = 262144;
127            buf->f_bfree = 131072;
128            buf->f_bsize = 512;
129            buf->f_namelen = 255;
130            buf->f_namemax = 255;
131    
132            return 0;
133    }
134    
135    #define STATFS_T dummy_statfs_t
136    #define STATFS_FN(path,buf) (dummy_statfs(buf))
137    #endif
138    
139  extern RDPDR_DEVICE g_rdpdr_device[];  extern RDPDR_DEVICE g_rdpdr_device[];
140    
141  FILEINFO g_fileinfo[MAX_OPEN_FILES];  FILEINFO g_fileinfo[MAX_OPEN_FILES];
# Line 260  disk_enum_devices(uint32 * id, char *opt Line 313  disk_enum_devices(uint32 * id, char *opt
313          char *pos2;          char *pos2;
314          int count = 0;          int count = 0;
315    
316          // skip the first colon          /* skip the first colon */
317          optarg++;          optarg++;
318          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)          while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)
319          {          {
# Line 306  disk_create(uint32 device_id, uint32 acc Line 359  disk_create(uint32 device_id, uint32 acc
359          {          {
360                  case CREATE_ALWAYS:                  case CREATE_ALWAYS:
361    
362                          // Delete existing file/link.                          /* Delete existing file/link. */
363                          unlink(path);                          unlink(path);
364                          flags |= O_CREAT;                          flags |= O_CREAT;
365                          break;                          break;
366    
367                  case CREATE_NEW:                  case CREATE_NEW:
368    
369                          // If the file already exists, then fail.                          /* If the file already exists, then fail. */
370                          flags |= O_CREAT | O_EXCL;                          flags |= O_CREAT | O_EXCL;
371                          break;                          break;
372    
373                  case OPEN_ALWAYS:                  case OPEN_ALWAYS:
374    
375                          // Create if not already exists.                          /* Create if not already exists. */
376                          flags |= O_CREAT;                          flags |= O_CREAT;
377                          break;                          break;
378    
379                  case OPEN_EXISTING:                  case OPEN_EXISTING:
380    
381                          // Default behaviour                          /* Default behaviour */
382                          break;                          break;
383    
384                  case TRUNCATE_EXISTING:                  case TRUNCATE_EXISTING:
385    
386                          // If the file does not exist, then fail.                          /* If the file does not exist, then fail. */
387                          flags |= O_TRUNC;                          flags |= O_TRUNC;
388                          break;                          break;
389          }          }
390    
391          //printf("Open: \"%s\"  flags: %X, accessmask: %X sharemode: %X create disp: %X\n", path, flags_and_attributes, accessmask, sharemode, create_disposition);          /*printf("Open: \"%s\"  flags: %X, accessmask: %X sharemode: %X create disp: %X\n", path, flags_and_attributes, accessmask, sharemode, create_disposition); */
392    
393          // Get information about file and set that flag ourselfs          /* Get information about file and set that flag ourselfs */
394          if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))          if ((stat(path, &filestat) == 0) && (S_ISDIR(filestat.st_mode)))
395          {          {
396                  if (flags_and_attributes & FILE_NON_DIRECTORY_FILE)                  if (flags_and_attributes & FILE_NON_DIRECTORY_FILE)
# Line 568  disk_query_information(NTHANDLE handle, Line 621  disk_query_information(NTHANDLE handle,
621    
622          path = g_fileinfo[handle].path;          path = g_fileinfo[handle].path;
623    
624          // Get information about file          /* Get information about file */
625          if (fstat(handle, &filestat) != 0)          if (fstat(handle, &filestat) != 0)
626          {          {
627                  perror("stat");                  perror("stat");
# Line 576  disk_query_information(NTHANDLE handle, Line 629  disk_query_information(NTHANDLE handle,
629                  return STATUS_ACCESS_DENIED;                  return STATUS_ACCESS_DENIED;
630          }          }
631    
632          // Set file attributes          /* Set file attributes */
633          file_attributes = 0;          file_attributes = 0;
634          if (S_ISDIR(filestat.st_mode))          if (S_ISDIR(filestat.st_mode))
635                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;                  file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
# Line 591  disk_query_information(NTHANDLE handle, Line 644  disk_query_information(NTHANDLE handle,
644          if (!(filestat.st_mode & S_IWUSR))          if (!(filestat.st_mode & S_IWUSR))
645                  file_attributes |= FILE_ATTRIBUTE_READONLY;                  file_attributes |= FILE_ATTRIBUTE_READONLY;
646    
647          // Return requested data          /* Return requested data */
648          switch (info_class)          switch (info_class)
649          {          {
650                  case FileBasicInformation:                  case FileBasicInformation:
651                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,                          seconds_since_1970_to_filetime(get_create_time(&filestat), &ft_high,
652                                                         &ft_low);                                                         &ft_low);
653                          out_uint32_le(out, ft_low);     //create_access_time                          out_uint32_le(out, ft_low);     /* create_access_time */
654                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
655    
656                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
657                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     /* last_access_time */
658                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
659    
660                          seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);
661                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     /* last_write_time */
662                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
663    
664                          seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
665                          out_uint32_le(out, ft_low);     //last_change_time                          out_uint32_le(out, ft_low);     /* last_change_time */
666                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
667    
668                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
# Line 617  disk_query_information(NTHANDLE handle, Line 670  disk_query_information(NTHANDLE handle,
670    
671                  case FileStandardInformation:                  case FileStandardInformation:
672    
673                          out_uint32_le(out, filestat.st_size);   //Allocation size                          out_uint32_le(out, filestat.st_size);   /* Allocation size */
674                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
675                          out_uint32_le(out, filestat.st_size);   //End of file                          out_uint32_le(out, filestat.st_size);   /* End of file */
676                          out_uint32_le(out, 0);                          out_uint32_le(out, 0);
677                          out_uint32_le(out, filestat.st_nlink);  //Number of links                          out_uint32_le(out, filestat.st_nlink);  /* Number of links */
678                          out_uint8(out, 0);      //Delete pending                          out_uint8(out, 0);      /* Delete pending */
679                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      //Directory                          out_uint8(out, S_ISDIR(filestat.st_mode) ? 1 : 0);      /* Directory */
680                          break;                          break;
681    
682                  case FileObjectIdInformation:                  case FileObjectIdInformation:
# Line 663  disk_set_information(NTHANDLE handle, ui Line 716  disk_set_information(NTHANDLE handle, ui
716                          in_uint8s(in, 4);       /* Handle of root dir? */                          in_uint8s(in, 4);       /* Handle of root dir? */
717                          in_uint8s(in, 24);      /* unknown */                          in_uint8s(in, 24);      /* unknown */
718    
719                          // CreationTime                          /* CreationTime */
720                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
721                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
722    
723                          // AccessTime                          /* AccessTime */
724                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
725                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
726                          if (ft_low || ft_high)                          if (ft_low || ft_high)
727                                  access_time = convert_1970_to_filetime(ft_high, ft_low);                                  access_time = convert_1970_to_filetime(ft_high, ft_low);
728    
729                          // WriteTime                          /* WriteTime */
730                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
731                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
732                          if (ft_low || ft_high)                          if (ft_low || ft_high)
733                                  write_time = convert_1970_to_filetime(ft_high, ft_low);                                  write_time = convert_1970_to_filetime(ft_high, ft_low);
734    
735                          // ChangeTime                          /* ChangeTime */
736                          in_uint32_le(in, ft_low);                          in_uint32_le(in, ft_low);
737                          in_uint32_le(in, ft_high);                          in_uint32_le(in, ft_high);
738                          if (ft_low || ft_high)                          if (ft_low || ft_high)
# Line 718  disk_set_information(NTHANDLE handle, ui Line 771  disk_set_information(NTHANDLE handle, ui
771                          }                          }
772    
773                          if (!file_attributes)                          if (!file_attributes)
774                                  break;  // not valid                                  break;  /* not valid */
775    
776                          mode = filestat.st_mode;                          mode = filestat.st_mode;
777    
# Line 835  disk_check_notify(NTHANDLE handle) Line 888  disk_check_notify(NTHANDLE handle)
888    
889          if (memcmp(&pfinfo->notify, &notify, sizeof(NOTIFY)))          if (memcmp(&pfinfo->notify, &notify, sizeof(NOTIFY)))
890          {          {
891                  //printf("disk_check_notify found changed event\n");                  /*printf("disk_check_notify found changed event\n"); */
892                  memcpy(&pfinfo->notify, &notify, sizeof(NOTIFY));                  memcpy(&pfinfo->notify, &notify, sizeof(NOTIFY));
893                  status = STATUS_NOTIFY_ENUM_DIR;                  status = STATUS_NOTIFY_ENUM_DIR;
894          }          }
# Line 925  static FsInfoType * Line 978  static FsInfoType *
978  FsVolumeInfo(char *fpath)  FsVolumeInfo(char *fpath)
979  {  {
980    
         FILE *fdfs;  
981          static FsInfoType info;          static FsInfoType info;
982  #ifdef HAVE_MNTENT_H  #ifdef USE_SETMNTENT
983            FILE *fdfs;
984          struct mntent *e;          struct mntent *e;
985  #endif  #endif
986    
# Line 936  FsVolumeInfo(char *fpath) Line 989  FsVolumeInfo(char *fpath)
989          strcpy(info.label, "RDESKTOP");          strcpy(info.label, "RDESKTOP");
990          strcpy(info.type, "RDPFS");          strcpy(info.type, "RDPFS");
991    
992  #ifdef HAVE_MNTENT_H  #ifdef USE_SETMNTENT
993          fdfs = setmntent(MNTENT_PATH, "r");          fdfs = setmntent(MNTENT_PATH, "r");
994          if (!fdfs)          if (!fdfs)
995                  return &info;                  return &info;
# Line 970  FsVolumeInfo(char *fpath) Line 1023  FsVolumeInfo(char *fpath)
1023                                                  read(fd, buf, sizeof(buf));                                                  read(fd, buf, sizeof(buf));
1024                                                  strncpy(info.label, buf + 41, 32);                                                  strncpy(info.label, buf + 41, 32);
1025                                                  info.label[32] = '\0';                                                  info.label[32] = '\0';
1026                                                  //info.Serial = (buf[128]<<24)+(buf[127]<<16)+(buf[126]<<8)+buf[125];                                                  /* info.Serial = (buf[128]<<24)+(buf[127]<<16)+(buf[126]<<8)+buf[125]; */
1027                                          }                                          }
1028                                          close(fd);                                          close(fd);
1029                                  }                                  }
# Line 1073  disk_query_directory(NTHANDLE handle, ui Line 1126  disk_query_directory(NTHANDLE handle, ui
1126          {          {
1127                  case FileBothDirectoryInformation:                  case FileBothDirectoryInformation:
1128    
1129                          // If a search pattern is received, remember this pattern, and restart search                          /* If a search pattern is received, remember this pattern, and restart search */
1130                          if (pattern[0] != 0)                          if (pattern[0] != 0)
1131                          {                          {
1132                                  strncpy(pfinfo->pattern, 1 + strrchr(pattern, '/'), 64);                                  strncpy(pfinfo->pattern, 1 + strrchr(pattern, '/'), 64);
1133                                  rewinddir(pdir);                                  rewinddir(pdir);
1134                          }                          }
1135    
1136                          // find next dirent matching pattern                          /* find next dirent matching pattern */
1137                          pdirent = readdir(pdir);                          pdirent = readdir(pdir);
1138                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)                          while (pdirent && fnmatch(pfinfo->pattern, pdirent->d_name, 0) != 0)
1139                                  pdirent = readdir(pdir);                                  pdirent = readdir(pdir);
# Line 1088  disk_query_directory(NTHANDLE handle, ui Line 1141  disk_query_directory(NTHANDLE handle, ui
1141                          if (pdirent == NULL)                          if (pdirent == NULL)
1142                                  return STATUS_NO_MORE_FILES;                                  return STATUS_NO_MORE_FILES;
1143    
1144                          // Get information for directory entry                          /* Get information for directory entry */
1145                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);                          sprintf(fullpath, "%s/%s", dirname, pdirent->d_name);
1146    
1147                          if (stat(fullpath, &fstat))                          if (stat(fullpath, &fstat))
# Line 1119  disk_query_directory(NTHANDLE handle, ui Line 1172  disk_query_directory(NTHANDLE handle, ui
1172                          if (!(fstat.st_mode & S_IWUSR))                          if (!(fstat.st_mode & S_IWUSR))
1173                                  file_attributes |= FILE_ATTRIBUTE_READONLY;                                  file_attributes |= FILE_ATTRIBUTE_READONLY;
1174    
1175                          // Return requested information                          /* Return requested information */
1176                          out_uint8s(out, 8);     //unknown zero                          out_uint8s(out, 8);     /* unknown zero */
1177    
1178                          seconds_since_1970_to_filetime(get_create_time(&fstat), &ft_high, &ft_low);                          seconds_since_1970_to_filetime(get_create_time(&fstat), &ft_high, &ft_low);
1179                          out_uint32_le(out, ft_low);     // create time                          out_uint32_le(out, ft_low);     /* create time */
1180                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1181    
1182                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_atime, &ft_high, &ft_low);
1183                          out_uint32_le(out, ft_low);     //last_access_time                          out_uint32_le(out, ft_low);     /* last_access_time */
1184                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1185    
1186                          seconds_since_1970_to_filetime(fstat.st_mtime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_mtime, &ft_high, &ft_low);
1187                          out_uint32_le(out, ft_low);     //last_write_time                          out_uint32_le(out, ft_low);     /* last_write_time */
1188                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1189    
1190                          seconds_since_1970_to_filetime(fstat.st_ctime, &ft_high, &ft_low);                          seconds_since_1970_to_filetime(fstat.st_ctime, &ft_high, &ft_low);
1191                          out_uint32_le(out, ft_low);     //change_write_time                          out_uint32_le(out, ft_low);     /* change_write_time */
1192                          out_uint32_le(out, ft_high);                          out_uint32_le(out, ft_high);
1193    
1194                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      /* filesize low */
1195                          out_uint32_le(out, 0);  //filesize high                          out_uint32_le(out, 0);  /* filesize high */
1196                          out_uint32_le(out, fstat.st_size);      //filesize low                          out_uint32_le(out, fstat.st_size);      /* filesize low */
1197                          out_uint32_le(out, 0);  //filesize high                          out_uint32_le(out, 0);  /* filesize high */
1198                          out_uint32_le(out, file_attributes);                          out_uint32_le(out, file_attributes);
1199                          out_uint8(out, 2 * strlen(pdirent->d_name) + 2);        //unicode length                          out_uint8(out, 2 * strlen(pdirent->d_name) + 2);        /* unicode length */
1200                          out_uint8s(out, 7);     //pad?                          out_uint8s(out, 7);     /* pad? */
1201                          out_uint8(out, 0);      //8.3 file length                          out_uint8(out, 0);      /* 8.3 file length */
1202                          out_uint8s(out, 2 * 12);        //8.3 unicode length                          out_uint8s(out, 2 * 12);        /* 8.3 unicode length */
1203                          rdp_out_unistr(out, pdirent->d_name, 2 * strlen(pdirent->d_name));                          rdp_out_unistr(out, pdirent->d_name, 2 * strlen(pdirent->d_name));
1204                          break;                          break;
1205    
# Line 1178  disk_device_control(NTHANDLE handle, uin Line 1231  disk_device_control(NTHANDLE handle, uin
1231    
1232          switch (request)          switch (request)
1233          {          {
1234                  case 25:        // ?                  case 25:        /* ? */
1235                  case 42:        // ?                  case 42:        /* ? */
1236                  default:                  default:
1237                          unimpl("DISK IOCTL %d\n", request);                          unimpl("DISK IOCTL %d\n", request);
1238                          return STATUS_INVALID_PARAMETER;                          return STATUS_INVALID_PARAMETER;

Legend:
Removed from v.827  
changed lines
  Added in v.879

  ViewVC Help
Powered by ViewVC 1.1.26