home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / fossil / foslaux.zip / FOSLAUX.DOC next >
Text File  |  1987-01-28  |  2KB  |  53 lines

  1.  
  2.  
  3. FOSLAUX<1/2> Revision 1.2
  4.  
  5.  
  6. FOSLAUX<1/2> is a device driver that is used in place of IBMAUX for either
  7. COM1 or COM2.  It is a generic device driver that should work on any MS-DOS
  8. machine that has a FOSSIL style driver written for it.  Basically this
  9. driver is used in place of the standard CTTY COMx the user would use
  10. CTTY GENAUXx to transfer control to the remote terminal.  The advantage of
  11. using FOSLAUX is that ^C characters are not handled by DOS as break chars,
  12. so a remote user cannot break out of a batch file, output is directed to
  13. both the local monitor as well as the remote terminal, and input can be
  14. either from the local console or the remote terminal.  This is useful for
  15. sysops so that they can see what is happening on their systems (especially
  16. if the disk drive light is blinking madly when a remote user is connected!).
  17.  
  18. To use the driver it is necessary to have a FOSSIL style program loaded so
  19. that FOSSIL calls can be made.  Then the FOSSIL program must be run to
  20. enable the driver.  To use all of this stuff in a standard Opus type of
  21. batch file:
  22.  
  23. OPUS OPUS -B%1
  24. IF ERRORLEVEL 50 GOTO DOSEXIT
  25. IF ERRORLEVEL 40 GOTO OUTSIDE
  26. GOTO END
  27. :DOSEXIT
  28. FOSSIL 1 ON +
  29. CTTY GENAUX1
  30. C:\COMMAND.COM
  31. CTTY CON
  32. FOSSIL 1 OFF
  33. GOTO END
  34. :OUTSIDE
  35. FOSSIL 1 ON +
  36. CTTY GENAUX1
  37. OUTER /1 128/V 20/L
  38. CTTY CON
  39. FOSSIL 1 OFF
  40. :END
  41.  
  42.  
  43. If you encounter any problems with this program, please send a FidoNet mail
  44. message to Bob Hartman at node 132/101, or write to:
  45.  
  46. Bob Hartman
  47. 427-3 Amherst St.
  48. CS 2032, Suite 232
  49. Nashua, NH 03061
  50.  
  51.  
  52. - Bob -
  53.