50

How can I force netcat to send my input immediately, not just on newlines? I want to test an HTTP parser manually and check how it behaves when header lines are spread across multiple packets.

1
  • 2
    try socat as listed in this answer
    – Jeremy W
    Commented May 26, 2012 at 15:44

1 Answer 1

63

Use CtrlD, which is set by default as the tty eof key. When pressed in the middle of a line, it will give to netcat everything that has been input at that point.

The buffering is actually done by the tty layer and not handled by nc at all. stty -icanon && nc ... would disable the buffering and allow nc to see the data as it is entered into the terminal, at which point it will be sent right away. (Note that the stty and nc commands must be run together, otherwise the shell itself would likely reenable it when displaying its prompt.)

5
  • +1, but is there no option for opening netcat up the way that it does not buffer anything? Commented Jun 5, 2014 at 13:32
  • 7
    @FinalContest: The buffering is done by the tty layer. stty -icanon && nc ... or stty raw && nc ... would disable it. [Note that it must be run together, otherwise the shell itself would reenable it when displaying the prompt.] Commented Jun 5, 2014 at 13:52
  • @grawity: awesome, the former works fine, but the latter gets stuck... ctrl-c does not work anymore to quit the session, and I cannot get ctrl-z to work on it either. Is that expected? Also, please update your answer so that we can clean the comments up. Commented Jun 5, 2014 at 14:07
  • 2
    @FinalContest: Yeah, raw changes a whole bunch of tty options, one of them being the handling of special "control" keys at tty level. (It is really a "raw" mode, in that it passes everything to the program.) You can use stty -a -F /dev/pts/XX from another tty to see the current parameters. Commented Jun 5, 2014 at 14:23
  • 2
    I am using stty -icanon -echo && nc ... otherwise every char I typed in nc get echoed twice
    – Gelin Luo
    Commented Oct 9, 2019 at 0:17

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .