blob: 0398a25bdffeabcdbefac19c0a362ec948bba516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: atime.awk,v 1.3 1996/06/10 07:47:12 deraadt Exp $
# $NetBSD: atime.awk,v 1.2 1995/03/06 19:09:52 mycroft Exp $
$6 ~ /^ack/ && $5 !~ /[SFR]/ {
# given a tcpdump ftp trace, output one line for each ack
# in the form
# <ack time> <seq no>
# where <ack time> is the time packet was acked (in seconds with
# zero at time of first packet) and <seq no> is the tcp sequence
# number of the ack divided by 1024 (i.e., Kbytes acked).
#
# convert time to seconds
n = split ($1,t,":")
tim = t[1]*3600 + t[2]*60 + t[3]
if (! tzero) {
tzero = tim
OFS = "\t"
}
# get packet sequence number
printf "%7.2f\t%g\n", tim-tzero, $7/1024
}
|