home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / dcom / modems / 19165 < prev    next >
Encoding:
Text File  |  1993-01-08  |  1.7 KB  |  39 lines

  1. Newsgroups: comp.dcom.modems
  2. Path: sparky!uunet!usc!rpi!uwm.edu!psuvax1!postscript.cs.psu.edu!fenner
  3. From: fenner@postscript.cs.psu.edu (Bill Fenner)
  4. Subject: Re: ZyXEL voice and flow control
  5. Message-ID: <C0Ju99.3F4@cs.psu.edu>
  6. Keywords: ZyXEL voice flow control
  7. Sender: news@cs.psu.edu (Usenet)
  8. Nntp-Posting-Host: postscript.cs.psu.edu
  9. Organization: Penn State Computer Science
  10. References: <C0GHIz.MoJ@wsrcc.com> <C0Goy4.8A0@cs.psu.edu> <1993Jan7.160410.26277@netcom.com>
  11. Date: Fri, 8 Jan 1993 19:03:08 GMT
  12. Lines: 25
  13.  
  14. In article <1993Jan7.160410.26277@netcom.com> qualtrak@netcom.com (Qual Trak) writes:
  15. |In article <C0Goy4.8A0@cs.psu.edu> fenner@postscript.cs.psu.edu (Bill Fenner) writes:
  16. |>In article <C0GHIz.MoJ@wsrcc.com> wolfgang@wsrcc.com (Wolfgang S. Rupprecht) writes:
  17. |>|Having to deal with software flow control forces one to write fairly
  18. |>|inefficient code.
  19. |>Hardly; XON/XOFF is the TTY driver's job.  Set IXON, and feel free to write
  20. |>gobs and gobs of data and let the TTY driver worry about flow control.
  21. |Pray tell me where I can find a tty driver that can look for "dle
  22. |shielded" xon xoff sequences.
  23.  
  24. Not necessary.  First of all, I'm not sure that the XON/XOFF *are* really
  25. DLE shielded when in voice transmission mode.  Second of all, it doesn't
  26. matter to the TTY driver if there's a DLE before the XON or XOFF; <DLE><XOFF>
  27. is still an <XOFF>.
  28.  
  29. The thing to remember is that you're transmitting, and the only thing that
  30. you could receive back from the modem is:
  31. a) flow control
  32. b) touch tone information
  33.  
  34. So the worst that could happen is that you will get an extra <DLE> in the data
  35. strem, which is easy enough to check for, since <DLE><DLE> has no meaning
  36. in this context.
  37.  
  38.   Bill
  39.