Skip to content

Commit

Permalink
Remove paths
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechZankowski committed Oct 5, 2018
1 parent 503588e commit 71b71b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static void main(String[] args) throws PcapNativeException, InterruptedEx
}

private void readDEEPsample() throws PcapNativeException, InterruptedException, NotOpenException {
final PcapHandle handle = Pcaps.openOffline("F:\\IEX\\DEEP\\20180622_IEXTP1_DEEP1.0.pcap", PcapHandle.TimestampPrecision.MICRO);
final PcapHandle handle = Pcaps.openOffline("path_to_pcap", PcapHandle.TimestampPrecision.MICRO);

handle.loop(-1, new PacketListener() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static void main(String[] args) throws PcapNativeException, InterruptedEx
}

private void readTOPSsample() throws PcapNativeException, InterruptedException, NotOpenException {
final PcapHandle handle = Pcaps.openOffline("F:\\IEX\\TOPS\\20170209_IEXTP1_TOPS1.5.pcap\\20170209_IEXTP1_TOPS1.5.pcap", PcapHandle.TimestampPrecision.NANO);
final PcapHandle handle = Pcaps.openOffline("path_to_pcap", PcapHandle.TimestampPrecision.NANO);

handle.loop(-1, new PacketListener() {
@Override
Expand Down

0 comments on commit 71b71b3

Please sign in to comment.