In article <[EMAIL PROTECTED]> "Crist J. Clark" <[EMAIL PROTECTED]> wrote: >I am looking for a simple tool that I can use to control how TCP data >is split up among segments. I can't seem to figure out how to coax >Netcat into doing this.
Type: U S E R <space> ^D The ^D causes netcat's read(2) to return the characters it already has. You might also try stty -icanon for character-by-character reading in netcat. --------------------------------------------------------------------------- ----------------------------------------------------------------------------
