3 $
6 ~
/^ack
/ && $
5 !~
/[SFR
]/ {
4 # given a tcpdump ftp trace, output one line for each ack
7 # where <ack time> is the time packet was acked (in seconds with
8 # zero at time of first packet) and <seq no> is the tcp sequence
9 # number of the ack divided by 1024 (i.e., Kbytes acked).
11 # convert time to seconds
13 tim = t
[1]*3600 + t
[2]*60 + t
[3]
18 # get packet sequence number
19 printf "%7.2f\t%g\n", tim
-tzero
, $
7/1024