1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-27 12:14:26 +01:00

Code cleanup and use same syntax on the entire project

Initial code cleanup

More code cleanup

Cleanup more code

Cleanup Dot11 code

Fix OSX build issue

Cleanup examples

Fix ref and pointer declaration syntax

Fix braces
This commit is contained in:
Matias Fontanini
2016-01-02 08:17:59 -08:00
parent f5a82b1a17
commit d84f10cf08
177 changed files with 13203 additions and 12272 deletions

View File

@@ -19,7 +19,7 @@ public:
packet_with_extensions_and_length[];
static const uint32_t expected_packet_count;
void test_equals(const ICMP &icmp1, const ICMP &icmp2);
void test_equals(const ICMP& icmp1, const ICMP& icmp2);
};
const uint8_t ICMPTest::expected_packets[][8] = {
@@ -78,7 +78,7 @@ TEST_F(ICMPTest, CopyAssignmentOperator) {
}
TEST_F(ICMPTest, NestedCopy) {
ICMP *nested = new ICMP(expected_packets[0], sizeof(expected_packets[0]));
ICMP* nested = new ICMP(expected_packets[0], sizeof(expected_packets[0]));
ICMP icmp1(expected_packets[0], sizeof(expected_packets[0]));
icmp1.inner_pdu(nested);
ICMP icmp2(icmp1);
@@ -256,7 +256,7 @@ TEST_F(ICMPTest, SetRedirect) {
EXPECT_EQ(IPv4Address("1.2.3.4"), icmp.gateway());
}
void ICMPTest::test_equals(const ICMP &icmp1, const ICMP &icmp2) {
void ICMPTest::test_equals(const ICMP& icmp1, const ICMP& icmp2) {
EXPECT_EQ(icmp1.type(), icmp2.type());
EXPECT_EQ(icmp1.code(), icmp2.code());
EXPECT_EQ(icmp1.gateway(), icmp2.gateway());