tcount.rb
require 'win32ole'
 
USAGE = "tcount <capture-filename>"
 
if ARGV.length != 1
	puts USAGE
	exit 1
end
 
InputFile = ARGV[0]
UnsniffDB = WIN32OLE.new("Unsniff.Database")
UnsniffDB.Open(InputFile)
Count = UnsniffDB.PacketCount
UnsniffDB.Close
 
 
endl="\n"
$stdout << "Filename is " <<  InputFile << endl
$stdout << "Number of Packets = " <<  Count << endl
unsniff/samples/tcount/ruby.txt · Last modified: 2014/09/11 23:23 (external edit)
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki