We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 979808b commit d9849e5Copy full SHA for d9849e5
Packet++/src/GreLayer.cpp
@@ -221,7 +221,7 @@ namespace pcpp
221
break;
222
case PCPP_ETHERTYPE_ETHBRIDGE:
223
{
224
- if(tryConstructNextLayer<EthLayer>(payload,payloadLen) != nullptr)
+ if (tryConstructNextLayer<EthLayer>(payload, payloadLen) != nullptr)
225
226
227
}
Packet++/src/IPSecLayer.cpp
@@ -75,7 +75,7 @@ namespace pcpp
75
case PACKETPP_IPPROTO_IPIP:
76
77
uint8_t ipVersion = *payload >> 4;
78
- switch(ipVersion)
+ switch (ipVersion)
79
80
case 4:
81
0 commit comments