Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: cmd timeout

by ww (Archbishop)
on Apr 07, 2010 at 10:53 UTC ( [id://833254]=note: print w/replies, xml ) Need Help??


in reply to cmd timeout

Replies are listed 'Best First'.
Re^2: cmd timeout
by rubasov (Friar) on Apr 07, 2010 at 11:11 UTC
    FWIW tcpdump can make its stdout line buffered. Check out the '-l' (ell) option.
      Thanks. -l did the thing.
Re^2: cmd timeout
by ambrus (Abbot) on Apr 07, 2010 at 10:56 UTC

    The problem with this kind of stuff (such as nc host port | tr foo bar) is usually that the first program (the one you read from) will buffer output if the stdout isn't a terminal, and you can do nothing about that without changing that program. Just changing the second program isn't enough. I don't know tcpdump so I can't tell if that's the problem here too though.

      There might be a command line option to make tcpdump output non-buffered. Looking at the man page, -U (packet-buffered) looks promising. Alternatively, take a look at -c (exit after receiving count packets) and -G (rotates the dump file specified with the -w option every rotate_seconds second).

      I would also like to point out that there's a good Perl module for Pcap, which is what tcpdump is built around: Net::Pcap.

      I agree, so I would change the signal handler to something like this:
      sub { kill 'INT', $pid; sleep 1; # Yield the CPU close $process; die "timeout\n" };
      You might need to give the process chance to flush its buffers. I know, a sleep is usually a sign of a suspcious hack.
        And it's no exception here. There's no guarantee that enough other packets will be gathered to fill the buffer in that second. Or maybe you're trying to make sure the child finishes, but close already does that by calling a blocking waitpid.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://833254]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-20 00:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found