home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / protocol / tcpip / ibmpc / 6251 < prev    next >
Encoding:
Text File  |  1992-11-11  |  1.6 KB  |  51 lines

  1. Newsgroups: comp.protocols.tcp-ip.ibmpc
  2. Path: sparky!uunet!caen!spool.mu.edu!mixcom.com!Dean.Roth
  3. From: Dean.Roth <Dean.Roth@mixcom.mixcom.com>
  4. Subject: Re: SLIP Dialers
  5. Organization: Milwaukee Internet Xchange BBS, Milwaukee, WI U.S.A.
  6. Distribution: usa
  7. Date: Wed, 11 Nov 1992 20:20:12 GMT
  8. Message-ID: <1992Nov11.202012.11167@mixcom.com>
  9. References: <9211111630.AA00638@top.magnus.acs.ohio-state.edu>
  10. Sender: xeee02@mixcom.com (Dean A. Roth)
  11. Lines: 38
  12.  
  13. In <9211111630.AA00638@top.magnus.acs.ohio-state.edu> Art Krumsee <akrumsee@magnus.acs.ohio-state.edu> writes:
  14.  
  15. >I am looking for a simple SLIP dialer.  Preferably one that does not require 
  16. >device drivers loaded in CONFIG.SYS.  Any suggestions?
  17.  
  18.  
  19. One can create a dialer program with little effort using a 
  20. software library like Greenleaf Comm Lib. I did it (for my
  21. employer - it's not PD).
  22. You load the SLIP driver, start the dialer, and away you go.
  23.  
  24.  
  25. *HOWEVER*
  26.  
  27. There is one problem if your machine has a 16550 UART.
  28.  
  29. The SLIP packet drivers (ETHERSL and SLIP8250) enable
  30. a 16550 UART's FIFO.  Most comm packages, like Greenleaf,
  31. enable the FIFO when the com port is opened, and disable
  32. the FIFO when the comm port is closed by the dialer program.
  33. (This is not a critism of comm packages.)
  34. If the SLIP driver is loaded before the dialer program is 
  35. used, which is a desired procedure, the SLIP driver will now
  36. be screwed up and will not work because the UART FIFO has 
  37. been turned off.
  38.  
  39. Solutions:
  40.  
  41. 1) Modify the SLIP driver code to not use the FIFO. This is a
  42.    minor change to the assembler code.
  43.  
  44. 2) Modify the comm software to not touch the FIFO.
  45.  
  46. 3) Don't load the driver first, which was not an option for me.
  47.  
  48. 4) ?
  49.  
  50. Dean
  51.