Skip to content

Commit

Permalink
Ability to open pcaps as full messages instead of packets (merging fr…
Browse files Browse the repository at this point in the history
…agments)
  • Loading branch information
tfarley committed Apr 16, 2017
1 parent 260c961 commit 4484ff0
Show file tree
Hide file tree
Showing 8 changed files with 455 additions and 497 deletions.
4 changes: 2 additions & 2 deletions aclogview/FindOpcodeInFilesForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private void ProcessFile(string fileName)
int hits = 0;
int exceptions = 0;

var records = PCapReader.LoadPcap(fileName, ref searchAborted);
var records = PCapReader.LoadPcap(fileName, false, ref searchAborted);

foreach (var record in records)
{
Expand All @@ -202,7 +202,7 @@ private void ProcessFile(string fileName)
// ********************************************************************
// Custom search code that can output information to Special Output
// Below are several commented out examples on how you can search through bulk pcaps for targeted data, and output detailed information to the output tab.
foreach (BlobFrag frag in record.netPacket.fragList_)
foreach (BlobFrag frag in record.frags)
{
try
{
Expand Down
47 changes: 28 additions & 19 deletions aclogview/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4484ff0

Please sign in to comment.