blob: 85288c6f2088b2b32946d87bbc6a22a646018fef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include <gtest/gtest.h>
#include <cstring>
#include <string>
#include <stdint.h>
#include <tins/macros.h>
#ifndef _WIN32
#include <sys/socket.h>
#ifdef BSD
#include <net/if_dl.h>
#include <netinet/in.h>
#include <net/ethernet.h>
#endif
#endif
#include <tins/loopback.h>
#include <tins/ip.h>
#include <tins/tcp.h>
using namespace std;
using namespace Tins;
class LoopbackTest : public testing::Test {
public:
};
#ifndef _WIN32
TEST_F(LoopbackTest, MatchesResponse) {
Loopback loop1 = Loopback() / IP("192.168.0.1", "192.168.0.2") / TCP(22, 21);
loop1.family(PF_INET);
Loopback loop2 = Loopback() / IP("192.168.0.2", "192.168.0.1") / TCP(21, 22);
loop2.family(PF_INET);
PDU::serialization_type buffer = loop2.serialize();
EXPECT_TRUE(loop1.matches_response(&buffer[0], buffer.size()));
}
#endif // _WIN32
|