mirror of
https://github.com/mfontanini/libtins
synced 2026-01-28 12:44:25 +01:00
Prefix HAVE_ config.h macros with TINS_
This commit is contained in:
@@ -19,9 +19,9 @@
|
||||
#include "packet.h"
|
||||
#include "utils.h"
|
||||
#include "config.h"
|
||||
#ifdef HAVE_ACK_TRACKER
|
||||
#ifdef TINS_HAVE_ACK_TRACKER
|
||||
#include "tcp_ip/ack_tracker.h"
|
||||
#endif // HAVE_ACK_TRACKER
|
||||
#endif // TINS_HAVE_ACK_TRACKER
|
||||
|
||||
using namespace std;
|
||||
using namespace std::chrono;
|
||||
@@ -513,7 +513,7 @@ TEST_F(FlowTest, StreamFollower_FollowStream) {
|
||||
}
|
||||
|
||||
|
||||
#ifdef HAVE_ACK_TRACKER
|
||||
#ifdef TINS_HAVE_ACK_TRACKER
|
||||
|
||||
using namespace boost;
|
||||
using namespace boost::icl;
|
||||
@@ -707,7 +707,7 @@ TEST_F(FlowTest, AckNumbersAreCorrect) {
|
||||
EXPECT_EQ(9898U, stream.server_flow().ack_tracker().ack_number());
|
||||
}
|
||||
|
||||
#endif // HAVE_ACK_TRACKER
|
||||
#endif // TINS_HAVE_ACK_TRACKER
|
||||
|
||||
#else
|
||||
|
||||
|
||||
Reference in New Issue
Block a user