home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / ckermit.arc / ckiker.bwr < prev    next >
Text File  |  1988-02-23  |  3KB  |  58 lines

  1. CURRENT KNOWN BUGS WITH AMIGA KERMIT
  2.  
  3. No DIAL or SCRIPT commands yet.
  4.  
  5. The perror() command used under 3.03 does not give helpful error messages,
  6. only error numbers, if available.
  7.  
  8. Depending on unknown factors of AmigaDOS buffering, it is possible that
  9. wildcard expansion nested inside several levels of directories will cause
  10. significant disk thrashing.  I have not seen this yet, and have avoided
  11. complicating the expansion code by modifying it to not thrash.
  12.  
  13. When the Amiga's serial output is looped back to its serial input, (through
  14. a modem, say) and the serial device is set to a high baud rate (>100K), when
  15. a break is sent, the Amiga will hang up.
  16.  
  17. The setup and cleanup of Kermit's window does not currently support
  18. Workbench, and the default window created by Lattice's _main is not
  19. eliminated.  This is easily fixed, but there are other problems with
  20. Workbench invocation.  See below.
  21.  
  22. The current directory name is constructed from the previous current
  23. directory name and a new relative name.  This is similar to the way the CD
  24. command operates, but it is subject to some peculiarities.  For instance,
  25. 'CWD C:' followed by 'CWD /' results in the current directory being the
  26. the parent of C: and a directory name of 'C:/'.  It is possible to
  27. reconstruct the name using the Parent() AmigaDOS function.  (This would
  28. also allow Kermit under the Workbench to reconstruct the current directory
  29. name.)  However, the V1.1 RAM: handler has bugs in the Parent() function,
  30. and so would probably not function with this method.  Under 3.04 Lattice C,
  31. the Lattice functions are used for chdir() and getcwd(), since they seem to
  32. use Parent() reconstruction. (Lattice 3.04 C in general assumes use of the
  33. fixed V1.2 RAM: handler.)
  34.  
  35. There should be some form of output control and input for one-liners invoked
  36. with the '!' command.
  37.  
  38. Due to a bug in all C-Kermit's, the transaction timer is not reset before
  39. some remote commands are executed on some other versions of Kermit.  The
  40. reported transaction time will be the elapsed time since the timer was last
  41. reset, or the base (zero) time of the system, midnight January 1, 1978 on
  42. the Amiga.  This can be demonstrated by starting C-Kermit, requesting REMOTE
  43. HELP from a VMS Kermit-32 version 3.2.077 server before any file transfer,
  44. and then requesting STAT.
  45.  
  46. An audible bell is needed.
  47.  
  48. The use of 'SET MODEM-TYPE type' to select modem control usage will have
  49. to change when the DIAL command is supported.
  50.  
  51. The 23 by 77 window in connect mode is incompatible with the assumptions of
  52. many editors.  Emulation of a real terminal like a "not quite" ANSI VT100
  53. would be nice.
  54.  
  55. Kermit should support AmigaDOS wildcarding, especially for SEND's.  It can
  56. be argued that Unix wildcarding is often appropriate for remote GET's from
  57. the Amiga server, but AmigaDOS wildcarding should be optionally available.
  58.