Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
clementperon committed Oct 6, 2024
1 parent beacbf4 commit f1bc5a9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Examples/DpdkExample-FilterTraffic/PacketMatchingEngine.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#pragma once

#include "Packet.h"
#include "IPv4Layer.h"
#include "TcpLayer.h"
#include "UdpLayer.h"
#include "SystemUtils.h"
#include "pcapplusplus/Packet.h"
#include "pcapplusplus/IPv4Layer.h"
#include "pcapplusplus/TcpLayer.h"
#include "pcapplusplus/UdpLayer.h"
#include "pcapplusplus/SystemUtils.h"

/**
* Responsible for matching packets by match criteria received from the user. Current match criteria are a combination
Expand Down
8 changes: 0 additions & 8 deletions Examples/PfRingExample-FilterTraffic/PacketMatchingEngine.h
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
#pragma once

<<<<<<< HEAD
#include "Packet.h"
#include "IPv4Layer.h"
#include "TcpLayer.h"
#include "UdpLayer.h"
=======
#include "pcapplusplus/SystemUtils.h"
#include "pcapplusplus/Packet.h"
#include "pcapplusplus/IPv4Layer.h"
#include "pcapplusplus/TcpLayer.h"
#include "pcapplusplus/UdpLayer.h"
>>>>>>> c5dfc41d (Remove ifdef inside cpp)

/**
* Responsible for matching packets by match criteria received from the user. Current match criteria are a combination
Expand Down
10 changes: 5 additions & 5 deletions Examples/XdpExample-FilterTraffic/PacketMatchingEngine.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#pragma once

#include "Packet.h"
#include "IPv4Layer.h"
#include "TcpLayer.h"
#include "UdpLayer.h"
#include "SystemUtils.h"
#include "pcapplusplus/Packet.h"
#include "pcapplusplus/IPv4Layer.h"
#include "pcapplusplus/TcpLayer.h"
#include "pcapplusplus/UdpLayer.h"
#include "pcapplusplus/SystemUtils.h"

/**
* Responsible for matching packets by match criteria received from the user. Current match criteria are a combination
Expand Down

0 comments on commit f1bc5a9

Please sign in to comment.