make_dropevents
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # this script looks for drops in the trace (.tr) file, and
  4. # creates tcl code that will trigger nam annotations corresponding to them
  5. #
  6. egrep "^d" $1 | 
  7. awk 'BEGIN { n=1 } { print "$ns at " $2 " "$ns trace-annotate \"packet drop " n " (t=" $2 ")" "\"""; ++n }';