Coverage Report

Created: 2026-07-16 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/PcapPlusPlus/Packet++/header/Layer.h
Line
Count
Source
1
#pragma once
2
3
#include <stdint.h>
4
#include <stdio.h>
5
#include "ProtocolType.h"
6
#include <ostream>
7
#include <string>
8
#include <stdexcept>
9
#include <utility>
10
11
/// @file
12
13
/// @namespace pcpp
14
/// @brief The main namespace for the PcapPlusPlus lib
15
namespace pcpp
16
{
17
18
  /// @class IDataContainer
19
  /// An interface (virtual abstract class) that indicates an object that holds a pointer to a buffer data. The Layer
20
  /// class is an example of such object, hence it inherits this interface
21
  class IDataContainer
22
  {
23
  public:
24
    /// Get a pointer to the data
25
    /// @param[in] offset Get a pointer in a certain offset. Default is 0 - get a pointer to start of data
26
    /// @return A pointer to the data
27
    virtual uint8_t* getDataPtr(size_t offset = 0) const = 0;
28
29
4.53M
    virtual ~IDataContainer() = default;
30
  };
31
32
  class Packet;
33
34
  namespace internal
35
  {
36
    /// @brief Holds information about a Layer's data and object ownership.
37
    struct LayerAllocationInfo
38
    {
39
      /// @brief Pointer to the Packet this layer is attached to (if any).
40
      ///
41
      /// If the layer is attached to a Packet, the layer's memory span (data) is considered managed by the
42
      /// Packet. The Packet is responsible for keeping the layer's memory span valid and updating it should it
43
      /// become necessary as long as the layer is attached to it.
44
      ///
45
      /// In an event the Packet is destroyed, all of its attached layers's memory views are considered invalid.
46
      /// Accessing layer data after the Packet is destroyed results in undefined behavior.
47
      ///
48
      /// If nullptr, the layer is not attached to any Packet and is considered unmanaged.
49
      /// It also means the layer's memory span is considered owned by the layer itself and will be freed when
50
      /// the layer is destroyed.
51
      Packet* attachedPacket = nullptr;
52
53
      /// @brief Controls if the layer object is considered owned by the attached Packet
54
      ///
55
      /// If 'true', the Layer object is considered owned by the attached Packet and will be freed by it on Packet
56
      /// destruction.
57
      ///
58
      /// If 'false', the Layer object is considered unmanaged and the user is responsible for freeing it.
59
      /// This is commonly the case for layers created on the stack and attached to a Packet.
60
      bool ownedByPacket = false;
61
62
      /// @brief Sets the state of attachment to a specified Packet
63
      /// @param packet Pointer to the Packet this layer is attached to (or nullptr if not attached to any Packet)
64
      /// @param managed True if the layer object's lifetime is to be managed by the Packet, false otherwise
65
      /// @param force If true, bypasses the check for existing attachment. Default is false.
66
      /// @throws std::runtime_error if the layer is already attached to a Packet and 'force' is false
67
      void attachPacket(Packet* packet, bool managed, bool force = false)
68
0
      {
69
0
        if (!force && attachedPacket != nullptr)
70
0
        {
71
0
          throw std::runtime_error("Layer is already attached to a Packet");
72
0
        }
73
74
0
        attachedPacket = packet;
75
0
        ownedByPacket = managed;
76
0
      }
77
78
      /// @brief Clears the attachment to any Packet, resetting to unmanaged state.
79
      void detach()
80
0
      {
81
0
        attachedPacket = nullptr;
82
0
        ownedByPacket = false;
83
0
      }
84
    };
85
  }  // namespace internal
86
87
  /// @class Layer
88
  /// Layer is the base class for all protocol layers. Each protocol supported in PcapPlusPlus has a class that
89
  /// inherits Layer.
90
  /// The protocol layer class expose all properties and methods relevant for viewing and editing protocol fields.
91
  /// For example: a pointer to a structured header (e.g tcphdr, iphdr, etc.), protocol header size, payload size,
92
  /// compute fields that can be automatically computed, print protocol data to string, etc.
93
  /// Each protocol instance is obviously part of a protocol stack (which construct a packet). This protocol stack is
94
  /// represented in PcapPlusPlus in a linked list, and each layer is an element in this list. That's why each layer
95
  /// has properties to the next and previous layer in the protocol stack. The Layer class, as a base class, is
96
  /// abstract and the user can't create an instance of it (it has a private constructor). Each layer holds a pointer
97
  /// to the relevant place in the packet. The layer sees all the data from this pointer forward until the end of the
98
  /// packet. Here is an example packet showing this concept:
99
  ///
100
  /// @code{.unparsed}
101
  /// ====================================================
102
  /// |Eth       |IPv4       |TCP       |Packet          |
103
  /// |Header    |Header     |Header    |Payload         |
104
  /// ====================================================
105
  ///
106
  /// |--------------------------------------------------|
107
  /// EthLayer data
108
  ///            |---------------------------------------|
109
  ///            IPv4Layer data
110
  ///                        |---------------------------|
111
  ///                        TcpLayer data
112
  ///                                   |----------------|
113
  ///                                   PayloadLayer data
114
  /// @endcode
115
  class Layer : public IDataContainer
116
  {
117
    friend class Packet;
118
119
  public:
120
    /// A destructor for this class. Frees the data if it was allocated by the layer constructor (see
121
    /// isAllocatedToPacket() for more info)
122
    ~Layer() override;
123
124
    /// @return A pointer to the next layer in the protocol stack or nullptr if the layer is the last one
125
    Layer* getNextLayer() const
126
83.8M
    {
127
83.8M
      return m_NextLayer;
128
83.8M
    }
129
130
    /// @return A pointer to the previous layer in the protocol stack or nullptr if the layer is the first one
131
    Layer* getPrevLayer() const
132
1.37M
    {
133
1.37M
      return m_PrevLayer;
134
1.37M
    }
135
136
    /// @return The protocol enum
137
    ProtocolType getProtocol() const
138
60.2M
    {
139
60.2M
      return m_Protocol;
140
60.2M
    }
141
142
    /// Check if the layer's protocol matches a protocol family
143
    /// @param protocolTypeFamily The protocol family to check
144
    /// @return True if the layer's protocol matches the protocol family, false otherwise
145
    bool isMemberOfProtocolFamily(ProtocolTypeFamily protocolTypeFamily) const;
146
147
    /// @return A pointer to the layer raw data. In most cases it'll be a pointer to the first byte of the header
148
    uint8_t* getData() const
149
256k
    {
150
256k
      return m_Data;
151
256k
    }
152
153
    /// @return The length in bytes of the data from the first byte of the header until the end of the packet
154
    size_t getDataLen() const
155
2.62M
    {
156
2.62M
      return m_DataLen;
157
2.62M
    }
158
159
    /// @return A pointer for the layer payload, meaning the first byte after the header
160
    uint8_t* getLayerPayload() const
161
0
    {
162
0
      return m_Data + getHeaderLen();
163
0
    }
164
165
    /// @return The size in bytes of the payload
166
    size_t getLayerPayloadSize() const
167
27.2k
    {
168
27.2k
      return m_DataLen - getHeaderLen();
169
27.2k
    }
170
171
    /// Raw data in layers can come from one of sources:
172
    /// 1. from an existing packet - this is the case when parsing packets received from files or the network. In
173
    /// this case the data was already allocated by someone else, and layer only holds the pointer to the relevant
174
    /// place inside this data
175
    /// 2. when creating packets, data is allocated when layer is created. In this case the layer is responsible for
176
    /// freeing it as well
177
    ///
178
    /// @return Returns true if the data was allocated by an external source (a packet) or false if it was allocated
179
    /// by the layer itself
180
    bool isAllocatedToPacket() const
181
4.53M
    {
182
4.53M
      return m_AllocationInfo.attachedPacket != nullptr;
183
4.53M
    }
184
185
    /// @brief Copy the raw data of this layer to another array
186
    ///
187
    /// @warning The method does not perform any bounds checking on the destination array. The caller MUST ensure
188
    /// that the destination array has enough space to hold the getDataLen() bytes.
189
    ///
190
    /// @warning Prefer the overload of copyData() that accepts a destination size to ensure safe copying of data.
191
    ///
192
    /// @param[out] toArr The destination byte array
193
    void copyData(uint8_t* toArr) const;
194
195
    /// @brief Copy the raw data of this layer to another array, with a specified maximum size.
196
    ///
197
    /// The method copies up to 'destSize' bytes of the layer's raw data into the provided destination array.
198
    /// If the layer's data length is greater than 'destSize', only the first 'destSize' bytes will be copied.
199
    ///
200
    /// To ensure sufficient space is available in the destination array, use getDataLen() to determine the actual
201
    /// length of the layer's data before calling this method.
202
    ///
203
    /// @param[out] dest The destination byte array
204
    /// @param[in] destSize The maximum number of bytes to copy
205
    /// @return The number of bytes copied to the destination array.
206
    size_t copyData(uint8_t* dest, size_t destSize) const;
207
208
    // implement abstract methods
209
210
    uint8_t* getDataPtr(size_t offset = 0) const override
211
112k
    {
212
112k
      return static_cast<uint8_t*>(m_Data + offset);
213
112k
    }
214
215
    // abstract methods
216
217
    /// Each layer is responsible for parsing the next layer
218
    virtual void parseNextLayer() = 0;
219
220
    /// @return The header length in bytes
221
    virtual size_t getHeaderLen() const = 0;
222
223
    /// Each layer can compute field values automatically using this method. This is an abstract method
224
    virtual void computeCalculateFields() = 0;
225
226
    /// @return A string representation of the layer most important data (should look like the layer description in
227
    /// Wireshark)
228
    virtual std::string toString() const = 0;
229
230
    /// @return The OSI Model layer this protocol belongs to
231
    virtual OsiModelLayer getOsiModelLayer() const = 0;
232
233
  protected:
234
    uint8_t* m_Data;
235
    size_t m_DataLen;
236
    ProtocolType m_Protocol;
237
    Layer* m_NextLayer;
238
    Layer* m_PrevLayer;
239
240
  private:
241
    internal::LayerAllocationInfo m_AllocationInfo;
242
243
  protected:
244
0
    Layer() : m_Data(nullptr), m_DataLen(0), m_Protocol(UnknownProtocol), m_NextLayer(nullptr), m_PrevLayer(nullptr)
245
0
    {}
246
247
    Layer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, ProtocolType protocol = UnknownProtocol)
248
4.39M
        : m_Data(data), m_DataLen(dataLen), m_Protocol(protocol), m_NextLayer(nullptr), m_PrevLayer(prevLayer),
249
4.39M
          m_AllocationInfo{ packet, false }
250
4.39M
    {}
251
252
    // Copy c'tor
253
    Layer(const Layer& other);
254
    Layer& operator=(const Layer& other);
255
256
    /// @brief Get a pointer to the Packet this layer is attached to (if any).
257
    /// @return A pointer to the Packet this layer is attached to, or nullptr if the layer is not attached.
258
    Packet* getAttachedPacket()
259
3.92M
    {
260
3.92M
      return m_AllocationInfo.attachedPacket;
261
3.92M
    }
262
263
    /// @brief Get a pointer to the Packet this layer is attached to (if any).
264
    /// @return A const pointer to the Packet this layer is attached to, or nullptr if the layer is not attached.
265
    Packet const* getAttachedPacket() const
266
8.21k
    {
267
8.21k
      return m_AllocationInfo.attachedPacket;
268
8.21k
    }
269
270
    void setNextLayer(Layer* nextLayer)
271
3.42M
    {
272
3.42M
      m_NextLayer = nextLayer;
273
3.42M
    }
274
    void setPrevLayer(Layer* prevLayer)
275
0
    {
276
0
      m_PrevLayer = prevLayer;
277
0
    }
278
279
    // ------ Memory Control Methods -----
280
    // Used by derived classes to request buffer size changes.
281
282
    /// @brief Requests the layer to allocate a new data buffer of the specified length.
283
    ///
284
    /// If the layer is not attached to a Packet, it will allocate a new buffer of the specified length.
285
    /// If the layer is attached to a Packet, it will throw a std::logic_error, as that case is not yet supported.
286
    ///
287
    /// The primary use case for this method is initial allocation of the data buffer in derived classes.
288
    ///
289
    /// @param[in] dataLen The length of the new data buffer.
290
    /// @param[in] zeroInit If true, the new buffer will be zero-initialized.
291
    /// @throws std::runtime_error if the layer already has allocated data.
292
    /// @throws std::logic_error if the layer is attached to a Packet (not yet supported).
293
    void allocData(size_t dataLen, bool zeroInit = true);
294
295
    virtual bool extendLayer(int offsetInLayer, size_t numOfBytesToExtend);
296
    virtual bool shortenLayer(int offsetInLayer, size_t numOfBytesToShorten);
297
298
    bool hasNextLayer() const
299
6.31M
    {
300
6.31M
      return m_NextLayer != nullptr;
301
6.31M
    }
302
303
    /// @brief Construct the next layer in the protocol stack. No validation is performed on the data.
304
    ///
305
    /// This overload infers the Packet from the current layer.
306
    ///
307
    /// @tparam T The type of the layer to construct
308
    /// @tparam Args The types of the arguments to pass to the layer constructor
309
    /// @param data The data to construct the layer from
310
    /// @param dataLen The length of the data
311
    /// @param extraArgs Extra arguments to be forwarded to the layer constructor
312
    /// @return The constructed layer
313
    template <typename T, typename... Args>
314
    Layer* constructNextLayer(uint8_t* data, size_t dataLen, Args&&... extraArgs)
315
337k
    {
316
337k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
337k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::VlanLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
20.0k
    {
316
20.0k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
20.0k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::MplsLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
83.1k
    {
316
83.1k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
83.1k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
88.9k
    {
316
88.9k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
88.9k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::VrrpV3Layer, pcpp::IPAddress::AddressType>(unsigned char*, unsigned long, pcpp::IPAddress::AddressType&&)
Line
Count
Source
315
11.6k
    {
316
11.6k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
11.6k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::ArpLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
5.89k
    {
316
5.89k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
5.89k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::DnsLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
46.7k
    {
316
46.7k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
46.7k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::RadiusLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
22.8k
    {
316
22.8k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
22.8k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::GtpV1Layer>(unsigned char*, unsigned long)
Line
Count
Source
315
15.4k
    {
316
15.4k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
15.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::GtpV2Layer>(unsigned char*, unsigned long)
Line
Count
Source
315
7.90k
    {
316
7.90k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
7.90k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::DhcpV6Layer>(unsigned char*, unsigned long)
Line
Count
Source
315
3.91k
    {
316
3.91k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
3.91k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::NtpLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
8.00k
    {
316
8.00k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
8.00k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::WakeOnLanLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
375
    {
316
375
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
375
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::EthLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
6.85k
    {
316
6.85k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
6.85k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::SdpLayer>(unsigned char*, unsigned long)
Line
Count
Source
315
15.8k
    {
316
15.8k
      return constructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
317
15.8k
    }
318
319
    /// Construct the next layer in the protocol stack. No validation is performed on the data.
320
    /// @tparam T The type of the layer to construct
321
    /// @tparam Args The types of the arguments to pass to the layer constructor
322
    /// @param[in] data The data to construct the layer from
323
    /// @param[in] dataLen The length of the data
324
    /// @param[in] packet The packet the layer belongs to
325
    /// @param[in] extraArgs Extra arguments to be forwarded to the layer constructor
326
    /// @return The constructed layer
327
    template <typename T, typename... Args>
328
    Layer* constructNextLayer(uint8_t* data, size_t dataLen, Packet* packet, Args&&... extraArgs)
329
2.83M
    {
330
2.83M
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
2.83M
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
2.83M
      setNextLayer(newLayer);
337
2.83M
      return newLayer;
338
2.83M
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IPv4Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
780k
    {
330
780k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
780k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
780k
      setNextLayer(newLayer);
337
780k
      return newLayer;
338
780k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
320k
    {
330
320k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
320k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
320k
      setNextLayer(newLayer);
337
320k
      return newLayer;
338
320k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IPv6Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
207k
    {
330
207k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
207k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
207k
      setNextLayer(newLayer);
337
207k
      return newLayer;
338
207k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::VlanLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
57.4k
    {
330
57.4k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
57.4k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
57.4k
      setNextLayer(newLayer);
337
57.4k
      return newLayer;
338
57.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::MplsLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
85.4k
    {
330
85.4k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
85.4k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
85.4k
      setNextLayer(newLayer);
337
85.4k
      return newLayer;
338
85.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::PPP_PPTPLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
6.63k
    {
330
6.63k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
6.63k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
6.63k
      setNextLayer(newLayer);
337
6.63k
      return newLayer;
338
6.63k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::EthLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
6.85k
    {
330
6.85k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
6.85k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
6.85k
      setNextLayer(newLayer);
337
6.85k
      return newLayer;
338
6.85k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::EthDot3Layer>(unsigned char*, unsigned long, pcpp::Packet*)
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::GtpV2Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
14.4k
    {
330
14.4k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
14.4k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
14.4k
      setNextLayer(newLayer);
337
14.4k
      return newLayer;
338
14.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::UdpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
263k
    {
330
263k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
263k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
263k
      setNextLayer(newLayer);
337
263k
      return newLayer;
338
263k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::TcpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
635k
    {
330
635k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
635k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
635k
      setNextLayer(newLayer);
337
635k
      return newLayer;
338
635k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IcmpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
16.8k
    {
330
16.8k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
16.8k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
16.8k
      setNextLayer(newLayer);
337
16.8k
      return newLayer;
338
16.8k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::GREv0Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
16.6k
    {
330
16.6k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
16.6k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
16.6k
      setNextLayer(newLayer);
337
16.6k
      return newLayer;
338
16.6k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::GREv1Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
20.3k
    {
330
20.3k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
20.3k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
20.3k
      setNextLayer(newLayer);
337
20.3k
      return newLayer;
338
20.3k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IgmpV1Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
2.19k
    {
330
2.19k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
2.19k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
2.19k
      setNextLayer(newLayer);
337
2.19k
      return newLayer;
338
2.19k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IgmpV2Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
2.96k
    {
330
2.96k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
2.96k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
2.96k
      setNextLayer(newLayer);
337
2.96k
      return newLayer;
338
2.96k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IgmpV3QueryLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
20
    {
330
20
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
20
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
20
      setNextLayer(newLayer);
337
20
      return newLayer;
338
20
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::IgmpV3ReportLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
1.58k
    {
330
1.58k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
1.58k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
1.58k
      setNextLayer(newLayer);
337
1.58k
      return newLayer;
338
1.58k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::AuthenticationHeaderLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
5
    {
330
5
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
5
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
5
      setNextLayer(newLayer);
337
5
      return newLayer;
338
5
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::ESPLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
45
    {
330
45
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
45
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
45
      setNextLayer(newLayer);
337
45
      return newLayer;
338
45
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::VrrpV2Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
12.5k
    {
330
12.5k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
12.5k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
12.5k
      setNextLayer(newLayer);
337
12.5k
      return newLayer;
338
12.5k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::VrrpV3Layer, pcpp::IPAddress::AddressType>(unsigned char*, unsigned long, pcpp::Packet*, pcpp::IPAddress::AddressType&&)
Line
Count
Source
329
17.4k
    {
330
17.4k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
17.4k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
17.4k
      setNextLayer(newLayer);
337
17.4k
      return newLayer;
338
17.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::ArpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
17.5k
    {
330
17.5k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
17.5k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
17.5k
      setNextLayer(newLayer);
337
17.5k
      return newLayer;
338
17.5k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::PPPoESessionLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
29.5k
    {
330
29.5k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
29.5k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
29.5k
      setNextLayer(newLayer);
337
29.5k
      return newLayer;
338
29.5k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::PPPoEDiscoveryLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
1.70k
    {
330
1.70k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
1.70k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
1.70k
      setNextLayer(newLayer);
337
1.70k
      return newLayer;
338
1.70k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::LLCLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
12.8k
    {
330
12.8k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
12.8k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
12.8k
      setNextLayer(newLayer);
337
12.8k
      return newLayer;
338
12.8k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::HttpRequestLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
78.2k
    {
330
78.2k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
78.2k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
78.2k
      setNextLayer(newLayer);
337
78.2k
      return newLayer;
338
78.2k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::HttpResponseLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
15.2k
    {
330
15.2k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
15.2k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
15.2k
      setNextLayer(newLayer);
337
15.2k
      return newLayer;
338
15.2k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::SipRequestLayer>(unsigned char*, unsigned long, pcpp::Packet*)
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::SipResponseLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
1.48k
    {
330
1.48k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
1.48k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
1.48k
      setNextLayer(newLayer);
337
1.48k
      return newLayer;
338
1.48k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::DnsOverTcpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
4.92k
    {
330
4.92k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
4.92k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
4.92k
      setNextLayer(newLayer);
337
4.92k
      return newLayer;
338
4.92k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::TelnetLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
8.93k
    {
330
8.93k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
8.93k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
8.93k
      setNextLayer(newLayer);
337
8.93k
      return newLayer;
338
8.93k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::FtpResponseLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
11.3k
    {
330
11.3k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
11.3k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
11.3k
      setNextLayer(newLayer);
337
11.3k
      return newLayer;
338
11.3k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::FtpRequestLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
5.62k
    {
330
5.62k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
5.62k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
5.62k
      setNextLayer(newLayer);
337
5.62k
      return newLayer;
338
5.62k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::FtpDataLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
1.38k
    {
330
1.38k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
1.38k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
1.38k
      setNextLayer(newLayer);
337
1.38k
      return newLayer;
338
1.38k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::TpktLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
12.2k
    {
330
12.2k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
12.2k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
12.2k
      setNextLayer(newLayer);
337
12.2k
      return newLayer;
338
12.2k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::SmtpResponseLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
3.36k
    {
330
3.36k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
3.36k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
3.36k
      setNextLayer(newLayer);
337
3.36k
      return newLayer;
338
3.36k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::SmtpRequestLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
8.15k
    {
330
8.15k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
8.15k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
8.15k
      setNextLayer(newLayer);
337
8.15k
      return newLayer;
338
8.15k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::ModbusLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
1.80k
    {
330
1.80k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
1.80k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
1.80k
      setNextLayer(newLayer);
337
1.80k
      return newLayer;
338
1.80k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::CotpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
10.5k
    {
330
10.5k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
10.5k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
10.5k
      setNextLayer(newLayer);
337
10.5k
      return newLayer;
338
10.5k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::DhcpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
17.4k
    {
330
17.4k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
17.4k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
17.4k
      setNextLayer(newLayer);
337
17.4k
      return newLayer;
338
17.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::VxlanLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
6.85k
    {
330
6.85k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
6.85k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
6.85k
      setNextLayer(newLayer);
337
6.85k
      return newLayer;
338
6.85k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::DnsLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
46.7k
    {
330
46.7k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
46.7k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
46.7k
      setNextLayer(newLayer);
337
46.7k
      return newLayer;
338
46.7k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::RadiusLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
22.8k
    {
330
22.8k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
22.8k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
22.8k
      setNextLayer(newLayer);
337
22.8k
      return newLayer;
338
22.8k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::GtpV1Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
15.4k
    {
330
15.4k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
15.4k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
15.4k
      setNextLayer(newLayer);
337
15.4k
      return newLayer;
338
15.4k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::DhcpV6Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
3.91k
    {
330
3.91k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
3.91k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
3.91k
      setNextLayer(newLayer);
337
3.91k
      return newLayer;
338
3.91k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::NtpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
8.00k
    {
330
8.00k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
8.00k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
8.00k
      setNextLayer(newLayer);
337
8.00k
      return newLayer;
338
8.00k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::WakeOnLanLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
438
    {
330
438
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
438
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
438
      setNextLayer(newLayer);
337
438
      return newLayer;
338
438
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::S7CommLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
7.24k
    {
330
7.24k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
7.24k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
7.24k
      setNextLayer(newLayer);
337
7.24k
      return newLayer;
338
7.24k
    }
pcpp::Layer* pcpp::Layer::constructNextLayer<pcpp::SdpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
329
15.8k
    {
330
15.8k
      if (hasNextLayer())
331
0
      {
332
0
        throw std::runtime_error("Next layer already exists");
333
0
      }
334
335
15.8k
      Layer* newLayer = new T(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
336
15.8k
      setNextLayer(newLayer);
337
15.8k
      return newLayer;
338
15.8k
    }
339
340
    /// @brief Construct the next layer in the protocol stack using a factory functor.
341
    ///
342
    /// No validation is performed on the data, outside of what the factory functor may perform.
343
    /// If the factory returns a nullptr, no next layer is set.
344
    ///
345
    /// The factory functor is expected to have the following signature:
346
    /// Layer* factoryFn(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, ...);
347
    ///
348
    /// This overload infers the Packet from the current layer.
349
    ///
350
    /// @tparam TFactory The factory functor type.
351
    /// @tparam ...Args Parameter pack for extra arguments to pass to the factory functor.
352
    /// @param[in] factoryFn The factory functor to create the layer.
353
    /// @param[in] data The data to construct the layer from
354
    /// @param[in] dataLen The length of the data
355
    /// @param[in] extraArgs Extra arguments to be forwarded to the factory.
356
    /// @return The return value of the factory functor.
357
    template <typename TFactory, typename... Args>
358
    Layer* constructNextLayerFromFactory(TFactory factoryFn, uint8_t* data, size_t dataLen, Args&&... extraArgs)
359
447k
    {
360
447k
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
447k
                                                     std::forward<Args>(extraArgs)...);
362
447k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
359
34.3k
    {
360
34.3k
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
34.3k
                                                     std::forward<Args>(extraArgs)...);
362
34.3k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::Layer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::Layer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
359
63.7k
    {
360
63.7k
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
63.7k
                                                     std::forward<Args>(extraArgs)...);
362
63.7k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::SSLLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SSLLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
359
328k
    {
360
328k
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
328k
                                                     std::forward<Args>(extraArgs)...);
362
328k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::SSHLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SSHLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
359
14.9k
    {
360
14.9k
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
14.9k
                                                     std::forward<Args>(extraArgs)...);
362
14.9k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
359
55
    {
360
55
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
55
                                                     std::forward<Args>(extraArgs)...);
362
55
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::StpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::StpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
359
5.46k
    {
360
5.46k
      return constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, getAttachedPacket(),
361
5.46k
                                                     std::forward<Args>(extraArgs)...);
362
5.46k
    }
363
364
    /// @brief Construct the next layer in the protocol stack using a factory functor.
365
    ///
366
    /// No validation is performed on the data, outside of what the factory functor may perform.
367
    /// If the factory returns a nullptr, no next layer is set.
368
    ///
369
    /// The factory functor is expected to have the following signature:
370
    /// Layer* factoryFn(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, ...);
371
    ///
372
    /// @tparam TFactory The factory functor type.
373
    /// @tparam ...Args Parameter pack for extra arguments to pass to the factory functor.
374
    /// @param[in] factoryFn The factory functor to create the layer.
375
    /// @param[in] data The data to construct the layer from
376
    /// @param[in] dataLen The length of the data
377
    /// @param[in] packet The packet the layer belongs to
378
    /// @param[in] extraArgs Extra arguments to be forwarded to the factory.
379
    /// @return The return value of the factory functor.
380
    template <typename TFactory, typename... Args>
381
    Layer* constructNextLayerFromFactory(TFactory factoryFn, uint8_t* data, size_t dataLen, Packet* packet,
382
                                         Args&&... extraArgs)
383
564k
    {
384
564k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
564k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
564k
      setNextLayer(newLayer);
392
564k
      return newLayer;
393
564k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
66.2k
    {
384
66.2k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
66.2k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
66.2k
      setNextLayer(newLayer);
392
66.2k
      return newLayer;
393
66.2k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::Layer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::Layer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
63.7k
    {
384
63.7k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
63.7k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
63.7k
      setNextLayer(newLayer);
392
63.7k
      return newLayer;
393
63.7k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::SSLLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SSLLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
328k
    {
384
328k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
328k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
328k
      setNextLayer(newLayer);
392
328k
      return newLayer;
393
328k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::SSHLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SSHLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
14.9k
    {
384
14.9k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
14.9k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
14.9k
      setNextLayer(newLayer);
392
14.9k
      return newLayer;
393
14.9k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::DoIpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::DoIpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
960
    {
384
960
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
960
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
960
      setNextLayer(newLayer);
392
960
      return newLayer;
393
960
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::PostgresLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::PostgresLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
80
    {
384
80
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
80
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
80
      setNextLayer(newLayer);
392
80
      return newLayer;
393
80
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::MySqlLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::MySqlLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
3.34k
    {
384
3.34k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
3.34k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
3.34k
      setNextLayer(newLayer);
392
3.34k
      return newLayer;
393
3.34k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*, unsigned short, unsigned short), unsigned short&, unsigned short&>(pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*, unsigned short, unsigned short), unsigned char*, unsigned long, pcpp::Packet*, unsigned short&, unsigned short&)
Line
Count
Source
383
25.3k
    {
384
25.3k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
25.3k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
25.3k
      setNextLayer(newLayer);
392
25.3k
      return newLayer;
393
25.3k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::WireGuardLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::WireGuardLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
1.43k
    {
384
1.43k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
1.43k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
1.43k
      setNextLayer(newLayer);
392
1.43k
      return newLayer;
393
1.43k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
53.9k
    {
384
53.9k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
53.9k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
53.9k
      setNextLayer(newLayer);
392
53.9k
      return newLayer;
393
53.9k
    }
pcpp::Layer* pcpp::Layer::constructNextLayerFromFactory<pcpp::StpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::StpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
383
5.46k
    {
384
5.46k
      if (hasNextLayer())
385
0
      {
386
0
        throw std::runtime_error("Next layer already exists");
387
0
      }
388
389
      // cppcheck-suppress redundantInitialization
390
5.46k
      Layer* newLayer = factoryFn(data, dataLen, this, packet, std::forward<Args>(extraArgs)...);
391
5.46k
      setNextLayer(newLayer);
392
5.46k
      return newLayer;
393
5.46k
    }
394
395
    /// Try to construct the next layer in the protocol stack.
396
    ///
397
    /// This overload infers the Packet from the current layer.
398
    ///
399
    /// The method checks if the data is valid for the layer type T before constructing it by calling
400
    /// T::isDataValid(data, dataLen). If the data is invalid, no layer is constructed and a nullptr is returned.
401
    ///
402
    /// @tparam T The type of the layer to construct
403
    /// @tparam Args The types of the extra arguments to pass to the layer constructor
404
    /// @param[in] data The data to construct the layer from
405
    /// @param[in] dataLen The length of the data
406
    /// @param[in] extraArgs Extra arguments to be forwarded to the layer constructor
407
    /// @return The constructed layer or nullptr if the data is invalid
408
    template <typename T, typename... Args>
409
    Layer* tryConstructNextLayer(uint8_t* data, size_t dataLen, Args&&... extraArgs)
410
0
    {
411
0
      return tryConstructNextLayer<T>(data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
412
0
    }
413
414
    /// Try to construct the next layer in the protocol stack.
415
    ///
416
    /// The method checks if the data is valid for the layer type T before constructing it by calling
417
    /// T::isDataValid(data, dataLen). If the data is invalid, no layer is constructed and a nullptr is returned.
418
    ///
419
    /// @tparam T The type of the layer to construct
420
    /// @tparam Args The types of the extra arguments to pass to the layer constructor
421
    /// @param[in] data The data to construct the layer from
422
    /// @param[in] dataLen The length of the data
423
    /// @param[in] packet The packet the layer belongs to
424
    /// @param[in] extraArgs Extra arguments to be forwarded to the layer constructor
425
    /// @return The constructed layer or nullptr if the data is invalid
426
    template <typename T, typename... Args>
427
    Layer* tryConstructNextLayer(uint8_t* data, size_t dataLen, Packet* packet, Args&&... extraArgs)
428
2.13M
    {
429
2.13M
      if (T::isDataValid(data, dataLen))
430
2.11M
      {
431
2.11M
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
2.11M
      }
433
13.2k
      return nullptr;
434
2.13M
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IPv4Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
784k
    {
429
784k
      if (T::isDataValid(data, dataLen))
430
780k
      {
431
780k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
780k
      }
433
3.67k
      return nullptr;
434
784k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IPv6Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
207k
    {
429
207k
      if (T::isDataValid(data, dataLen))
430
207k
      {
431
207k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
207k
      }
433
65
      return nullptr;
434
207k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::PPP_PPTPLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
7.02k
    {
429
7.02k
      if (T::isDataValid(data, dataLen))
430
6.63k
      {
431
6.63k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
6.63k
      }
433
392
      return nullptr;
434
7.02k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::EthLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::EthDot3Layer>(unsigned char*, unsigned long, pcpp::Packet*)
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::GtpV2Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
7.94k
    {
429
7.94k
      if (T::isDataValid(data, dataLen))
430
6.54k
      {
431
6.54k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
6.54k
      }
433
1.40k
      return nullptr;
434
7.94k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::UdpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
263k
    {
429
263k
      if (T::isDataValid(data, dataLen))
430
263k
      {
431
263k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
263k
      }
433
80
      return nullptr;
434
263k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::TcpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
638k
    {
429
638k
      if (T::isDataValid(data, dataLen))
430
635k
      {
431
635k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
635k
      }
433
2.96k
      return nullptr;
434
638k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IcmpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
17.1k
    {
429
17.1k
      if (T::isDataValid(data, dataLen))
430
16.8k
      {
431
16.8k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
16.8k
      }
433
370
      return nullptr;
434
17.1k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::GREv0Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
16.6k
    {
429
16.6k
      if (T::isDataValid(data, dataLen))
430
16.6k
      {
431
16.6k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
16.6k
      }
433
0
      return nullptr;
434
16.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::GREv1Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
20.3k
    {
429
20.3k
      if (T::isDataValid(data, dataLen))
430
20.3k
      {
431
20.3k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
20.3k
      }
433
0
      return nullptr;
434
20.3k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IgmpV1Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
2.19k
    {
429
2.19k
      if (T::isDataValid(data, dataLen))
430
2.19k
      {
431
2.19k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
2.19k
      }
433
0
      return nullptr;
434
2.19k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IgmpV2Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
2.96k
    {
429
2.96k
      if (T::isDataValid(data, dataLen))
430
2.96k
      {
431
2.96k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
2.96k
      }
433
0
      return nullptr;
434
2.96k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IgmpV3QueryLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
20
    {
429
20
      if (T::isDataValid(data, dataLen))
430
20
      {
431
20
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
20
      }
433
0
      return nullptr;
434
20
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::IgmpV3ReportLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
1.58k
    {
429
1.58k
      if (T::isDataValid(data, dataLen))
430
1.58k
      {
431
1.58k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
1.58k
      }
433
0
      return nullptr;
434
1.58k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::AuthenticationHeaderLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
5
    {
429
5
      if (T::isDataValid(data, dataLen))
430
5
      {
431
5
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
5
      }
433
0
      return nullptr;
434
5
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::ESPLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
45
    {
429
45
      if (T::isDataValid(data, dataLen))
430
45
      {
431
45
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
45
      }
433
0
      return nullptr;
434
45
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::VrrpV2Layer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
12.5k
    {
429
12.5k
      if (T::isDataValid(data, dataLen))
430
12.5k
      {
431
12.5k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
12.5k
      }
433
0
      return nullptr;
434
12.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::VrrpV3Layer, pcpp::IPAddress::AddressType>(unsigned char*, unsigned long, pcpp::Packet*, pcpp::IPAddress::AddressType&&)
Line
Count
Source
428
5.75k
    {
429
5.75k
      if (T::isDataValid(data, dataLen))
430
5.75k
      {
431
5.75k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
5.75k
      }
433
0
      return nullptr;
434
5.75k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::PPPoESessionLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
29.7k
    {
429
29.7k
      if (T::isDataValid(data, dataLen))
430
29.5k
      {
431
29.5k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
29.5k
      }
433
128
      return nullptr;
434
29.7k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::PPPoEDiscoveryLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
1.70k
    {
429
1.70k
      if (T::isDataValid(data, dataLen))
430
1.70k
      {
431
1.70k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
1.70k
      }
433
0
      return nullptr;
434
1.70k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::LLCLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
13.5k
    {
429
13.5k
      if (T::isDataValid(data, dataLen))
430
12.8k
      {
431
12.8k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
12.8k
      }
433
764
      return nullptr;
434
13.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::CotpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
12.1k
    {
429
12.1k
      if (T::isDataValid(data, dataLen))
430
10.5k
      {
431
10.5k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
10.5k
      }
433
1.65k
      return nullptr;
434
12.1k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::DhcpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
17.6k
    {
429
17.6k
      if (T::isDataValid(data, dataLen))
430
17.4k
      {
431
17.4k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
17.4k
      }
433
138
      return nullptr;
434
17.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::VxlanLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
6.85k
    {
429
6.85k
      if (T::isDataValid(data, dataLen))
430
6.85k
      {
431
6.85k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
6.85k
      }
433
0
      return nullptr;
434
6.85k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::S7CommLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
8.45k
    {
429
8.45k
      if (T::isDataValid(data, dataLen))
430
7.24k
      {
431
7.24k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
7.24k
      }
433
1.21k
      return nullptr;
434
8.45k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::ArpLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
11.6k
    {
429
11.6k
      if (T::isDataValid(data, dataLen))
430
11.6k
      {
431
11.6k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
11.6k
      }
433
0
      return nullptr;
434
11.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::VlanLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
37.5k
    {
429
37.5k
      if (T::isDataValid(data, dataLen))
430
37.4k
      {
431
37.4k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
37.4k
      }
433
129
      return nullptr;
434
37.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::MplsLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
2.27k
    {
429
2.27k
      if (T::isDataValid(data, dataLen))
430
2.27k
      {
431
2.27k
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
2.27k
      }
433
0
      return nullptr;
434
2.27k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayer<pcpp::WakeOnLanLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
428
348
    {
429
348
      if (T::isDataValid(data, dataLen))
430
63
      {
431
63
        return constructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...);
432
63
      }
433
285
      return nullptr;
434
348
    }
435
436
    /// @brief Try to construct the next layer in the protocol stack with a fallback option.
437
    ///
438
    /// This overload infers the Packet from the current layer.
439
    ///
440
    /// The method checks if the data is valid for the layer type T before constructing it by calling
441
    /// T::isDataValid(data, dataLen). If the data is invalid, it constructs the layer of type TFallback.
442
    ///
443
    /// @tparam T The type of the layer to construct
444
    /// @tparam TFallback The fallback layer type to construct if T fails
445
    /// @tparam Args The types of the extra arguments to pass to the layer constructor of T
446
    /// @param[in] data The data to construct the layer from
447
    /// @param[in] dataLen The length of the data
448
    /// @param[in] extraArgs Extra arguments to be forwarded to the layer constructor of T
449
    /// @return The constructed layer of type T or TFallback
450
    /// @remarks The parameters extraArgs are forwarded to the factory function, but not to the TFallback
451
    /// constructor.
452
    template <typename T, typename TFallback, typename... Args>
453
    Layer* tryConstructNextLayerWithFallback(uint8_t* data, size_t dataLen, Args&&... extraArgs)
454
1.33M
    {
455
1.33M
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
1.33M
                                                             std::forward<Args>(extraArgs)...);
457
1.33M
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IPv4Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
784k
    {
455
784k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
784k
                                                             std::forward<Args>(extraArgs)...);
457
784k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IPv6Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
201k
    {
455
201k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
201k
                                                             std::forward<Args>(extraArgs)...);
457
201k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::PPP_PPTPLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
7.02k
    {
455
7.02k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
7.02k
                                                             std::forward<Args>(extraArgs)...);
457
7.02k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::EthDot3Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::GtpV2Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
7.94k
    {
455
7.94k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
7.94k
                                                             std::forward<Args>(extraArgs)...);
457
7.94k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::UdpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
7.89k
    {
455
7.89k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
7.89k
                                                             std::forward<Args>(extraArgs)...);
457
7.89k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::TcpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
176k
    {
455
176k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
176k
                                                             std::forward<Args>(extraArgs)...);
457
176k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::GREv0Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
2.97k
    {
455
2.97k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
2.97k
                                                             std::forward<Args>(extraArgs)...);
457
2.97k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::GREv1Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
7
    {
455
7
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
7
                                                             std::forward<Args>(extraArgs)...);
457
7
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::AuthenticationHeaderLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::ESPLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
40
    {
455
40
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
40
                                                             std::forward<Args>(extraArgs)...);
457
40
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::PPPoESessionLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
29.7k
    {
455
29.7k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
29.7k
                                                             std::forward<Args>(extraArgs)...);
457
29.7k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::PPPoEDiscoveryLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
1.70k
    {
455
1.70k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
1.70k
                                                             std::forward<Args>(extraArgs)...);
457
1.70k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::LLCLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
13.5k
    {
455
13.5k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
13.5k
                                                             std::forward<Args>(extraArgs)...);
457
13.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::CotpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
12.1k
    {
455
12.1k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
12.1k
                                                             std::forward<Args>(extraArgs)...);
457
12.1k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::DhcpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
17.6k
    {
455
17.6k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
17.6k
                                                             std::forward<Args>(extraArgs)...);
457
17.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::VxlanLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
6.85k
    {
455
6.85k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
6.85k
                                                             std::forward<Args>(extraArgs)...);
457
6.85k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::S7CommLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
8.45k
    {
455
8.45k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
8.45k
                                                             std::forward<Args>(extraArgs)...);
457
8.45k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::ArpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
11.6k
    {
455
11.6k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
11.6k
                                                             std::forward<Args>(extraArgs)...);
457
11.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::VlanLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
37.5k
    {
455
37.5k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
37.5k
                                                             std::forward<Args>(extraArgs)...);
457
37.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::MplsLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
2.27k
    {
455
2.27k
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
2.27k
                                                             std::forward<Args>(extraArgs)...);
457
2.27k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::WakeOnLanLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long)
Line
Count
Source
454
348
    {
455
348
      return tryConstructNextLayerWithFallback<T, TFallback>(data, dataLen, getAttachedPacket(),
456
348
                                                             std::forward<Args>(extraArgs)...);
457
348
    }
458
459
    /// Try to construct the next layer in the protocol stack with a fallback option.
460
    ///
461
    /// The method checks if the data is valid for the layer type T before constructing it by calling
462
    /// T::isDataValid(data, dataLen). If the data is invalid, it constructs the layer of type TFallback.
463
    ///
464
    /// @tparam T The type of the layer to construct
465
    /// @tparam TFallback The fallback layer type to construct if T fails
466
    /// @tparam Args The types of the extra arguments to pass to the layer constructor of T
467
    /// @param[in] data The data to construct the layer from
468
    /// @param[in] dataLen The length of the data
469
    /// @param[in] packet The packet the layer belongs to
470
    /// @param[in] extraArgs Extra arguments to be forwarded to the layer constructor of T
471
    /// @return The constructed layer of type T or TFallback
472
    /// @remarks The parameters extraArgs are forwarded to the factory function, but not to the TFallback
473
    /// constructor.
474
    template <typename T, typename TFallback, typename... Args>
475
    Layer* tryConstructNextLayerWithFallback(uint8_t* data, size_t dataLen, Packet* packet, Args&&... extraArgs)
476
2.13M
    {
477
2.13M
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
2.11M
      {
479
2.11M
        return m_NextLayer;
480
2.11M
      }
481
482
13.2k
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
2.13M
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IPv4Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
784k
    {
477
784k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
780k
      {
479
780k
        return m_NextLayer;
480
780k
      }
481
482
3.67k
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
784k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IPv6Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
207k
    {
477
207k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
207k
      {
479
207k
        return m_NextLayer;
480
207k
      }
481
482
65
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
207k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::PPP_PPTPLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
7.02k
    {
477
7.02k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
6.63k
      {
479
6.63k
        return m_NextLayer;
480
6.63k
      }
481
482
392
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
7.02k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::EthDot3Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::GtpV2Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
7.94k
    {
477
7.94k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
6.54k
      {
479
6.54k
        return m_NextLayer;
480
6.54k
      }
481
482
1.40k
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
7.94k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::UdpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
263k
    {
477
263k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
263k
      {
479
263k
        return m_NextLayer;
480
263k
      }
481
482
80
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
263k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::TcpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
638k
    {
477
638k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
635k
      {
479
635k
        return m_NextLayer;
480
635k
      }
481
482
2.96k
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
638k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IcmpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
17.1k
    {
477
17.1k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
16.8k
      {
479
16.8k
        return m_NextLayer;
480
16.8k
      }
481
482
370
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
17.1k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::GREv0Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
16.6k
    {
477
16.6k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
16.6k
      {
479
16.6k
        return m_NextLayer;
480
16.6k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
16.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::GREv1Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
20.3k
    {
477
20.3k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
20.3k
      {
479
20.3k
        return m_NextLayer;
480
20.3k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
20.3k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IgmpV1Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
2.19k
    {
477
2.19k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
2.19k
      {
479
2.19k
        return m_NextLayer;
480
2.19k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
2.19k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IgmpV2Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
2.96k
    {
477
2.96k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
2.96k
      {
479
2.96k
        return m_NextLayer;
480
2.96k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
2.96k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IgmpV3QueryLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
20
    {
477
20
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
20
      {
479
20
        return m_NextLayer;
480
20
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
20
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::IgmpV3ReportLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
1.58k
    {
477
1.58k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
1.58k
      {
479
1.58k
        return m_NextLayer;
480
1.58k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
1.58k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::AuthenticationHeaderLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
5
    {
477
5
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
5
      {
479
5
        return m_NextLayer;
480
5
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
5
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::ESPLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
45
    {
477
45
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
45
      {
479
45
        return m_NextLayer;
480
45
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
45
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::VrrpV2Layer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
12.5k
    {
477
12.5k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
12.5k
      {
479
12.5k
        return m_NextLayer;
480
12.5k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
12.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::VrrpV3Layer, pcpp::PayloadLayer, pcpp::IPAddress::AddressType>(unsigned char*, unsigned long, pcpp::Packet*, pcpp::IPAddress::AddressType&&)
Line
Count
Source
476
5.75k
    {
477
5.75k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
5.75k
      {
479
5.75k
        return m_NextLayer;
480
5.75k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
5.75k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::PPPoESessionLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
29.7k
    {
477
29.7k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
29.5k
      {
479
29.5k
        return m_NextLayer;
480
29.5k
      }
481
482
128
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
29.7k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::PPPoEDiscoveryLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
1.70k
    {
477
1.70k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
1.70k
      {
479
1.70k
        return m_NextLayer;
480
1.70k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
1.70k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::LLCLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
13.5k
    {
477
13.5k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
12.8k
      {
479
12.8k
        return m_NextLayer;
480
12.8k
      }
481
482
764
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
13.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::CotpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
12.1k
    {
477
12.1k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
10.5k
      {
479
10.5k
        return m_NextLayer;
480
10.5k
      }
481
482
1.65k
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
12.1k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::DhcpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
17.6k
    {
477
17.6k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
17.4k
      {
479
17.4k
        return m_NextLayer;
480
17.4k
      }
481
482
138
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
17.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::VxlanLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
6.85k
    {
477
6.85k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
6.85k
      {
479
6.85k
        return m_NextLayer;
480
6.85k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
6.85k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::S7CommLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
8.45k
    {
477
8.45k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
7.24k
      {
479
7.24k
        return m_NextLayer;
480
7.24k
      }
481
482
1.21k
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
8.45k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::ArpLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
11.6k
    {
477
11.6k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
11.6k
      {
479
11.6k
        return m_NextLayer;
480
11.6k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
11.6k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::VlanLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
37.5k
    {
477
37.5k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
37.4k
      {
479
37.4k
        return m_NextLayer;
480
37.4k
      }
481
482
129
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
37.5k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::MplsLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
2.27k
    {
477
2.27k
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
2.27k
      {
479
2.27k
        return m_NextLayer;
480
2.27k
      }
481
482
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
2.27k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerWithFallback<pcpp::WakeOnLanLayer, pcpp::PayloadLayer>(unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
476
348
    {
477
348
      if (tryConstructNextLayer<T>(data, dataLen, packet, std::forward<Args>(extraArgs)...))
478
63
      {
479
63
        return m_NextLayer;
480
63
      }
481
482
285
      return constructNextLayer<TFallback>(data, dataLen, packet);
483
348
    }
484
485
    /// @brief Try to construct the next layer in the protocol stack using a factory functor with a fallback option.
486
    ///
487
    /// The method will attempt to construct the next layer using the provided factory function.
488
    /// If the factory function returns nullptr, indicating failure to create the layer, the method will then
489
    /// construct a layer of type TFallback.
490
    ///
491
    /// The factory functor is expected to have the following signature:
492
    /// Layer* factoryFn(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, ...);
493
    ///
494
    /// This overload infers the Packet from the current layer.
495
    ///
496
    /// @tparam TFallback The fallback layer type to construct if the factory fails.
497
    /// @tparam TFactory The factory functor type.
498
    /// @tparam ...Args Parameter pack for extra arguments to pass to the factory functor.
499
    /// @param[in] factoryFn The factory functor to create the layer.
500
    /// @param[in] data The data to construct the layer from
501
    /// @param[in] dataLen The length of the data
502
    /// @param[in] extraArgs Extra arguments to be forwarded to the factory.
503
    /// @return The return value of the factory functor.
504
    /// @remarks The parameters extraArgs are forwarded to the factory function, but not to the TFallback
505
    /// constructor.
506
    template <typename TFallback, typename TFactory, typename... Args>
507
    Layer* tryConstructNextLayerFromFactoryWithFallback(TFactory factoryFn, uint8_t* data, size_t dataLen,
508
                                                        Args&&... extraArgs)
509
116k
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
116k
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
116k
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
116k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
509
31.8k
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
31.8k
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
31.8k
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
31.8k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::DoIpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::DoIpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
509
905
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
905
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
905
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
905
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::PostgresLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::PostgresLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
509
80
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
80
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
80
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
80
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::MySqlLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::MySqlLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
509
3.34k
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
3.34k
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
3.34k
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
3.34k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*, unsigned short, unsigned short), unsigned short&, unsigned short&>(pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*, unsigned short, unsigned short), unsigned char*, unsigned long, unsigned short&, unsigned short&)
Line
Count
Source
509
25.3k
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
25.3k
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
25.3k
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
25.3k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::WireGuardLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::WireGuardLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
509
1.43k
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
1.43k
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
1.43k
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
1.43k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long)
Line
Count
Source
509
53.9k
    {
510
      // Note that the fallback is first to allow template argument deduction of the factory type.
511
53.9k
      return tryConstructNextLayerFromFactoryWithFallback<TFallback, TFactory>(
512
53.9k
          factoryFn, data, dataLen, getAttachedPacket(), std::forward<Args>(extraArgs)...);
513
53.9k
    }
514
515
    /// @brief Try to construct the next layer in the protocol stack using a factory functor with a fallback option.
516
    ///
517
    /// The method will attempt to construct the next layer using the provided factory function.
518
    /// If the factory function returns nullptr, indicating failure to create the layer, the method will then
519
    /// construct a layer of type TFallback.
520
    ///
521
    /// The factory functor is expected to have the following signature:
522
    /// Layer* factoryFn(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet, ...);
523
    ///
524
    /// @tparam TFallback The fallback layer type to construct if the factory fails.
525
    /// @tparam TFactory The factory functor type.
526
    /// @tparam ...Args Parameter pack for extra arguments to pass to the factory functor.
527
    /// @param[in] factoryFn The factory functor to create the layer.
528
    /// @param[in] data The data to construct the layer from
529
    /// @param[in] dataLen The length of the data
530
    /// @param[in] packet The packet the layer belongs to
531
    /// @param[in] extraArgs Extra arguments to be forwarded to the factory.
532
    /// @return The return value of the factory functor.
533
    /// @remarks The parameters extraArgs are forwarded to the factory function, but not to the TFallback
534
    /// constructor.
535
    template <typename TFallback, typename TFactory, typename... Args>
536
    Layer* tryConstructNextLayerFromFactoryWithFallback(TFactory factoryFn, uint8_t* data, size_t dataLen,
537
                                                        Packet* packet, Args&&... extraArgs)
538
116k
    {
539
116k
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
116k
                                                               std::forward<Args>(extraArgs)...);
541
116k
      if (nextLayer != nullptr)
542
61.0k
      {
543
61.0k
        return nextLayer;
544
61.0k
      }
545
546
      // factory failed, construct fallback layer
547
55.8k
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
116k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::BgpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
538
31.8k
    {
539
31.8k
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
31.8k
                                                               std::forward<Args>(extraArgs)...);
541
31.8k
      if (nextLayer != nullptr)
542
30.3k
      {
543
30.3k
        return nextLayer;
544
30.3k
      }
545
546
      // factory failed, construct fallback layer
547
1.51k
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
31.8k
    }
Unexecuted instantiation: pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::DoIpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::DoIpLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::LdapLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
538
905
    {
539
905
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
905
                                                               std::forward<Args>(extraArgs)...);
541
905
      if (nextLayer != nullptr)
542
115
      {
543
115
        return nextLayer;
544
115
      }
545
546
      // factory failed, construct fallback layer
547
790
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
905
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::PostgresLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::PostgresLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
538
80
    {
539
80
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
80
                                                               std::forward<Args>(extraArgs)...);
541
80
      if (nextLayer != nullptr)
542
80
      {
543
80
        return nextLayer;
544
80
      }
545
546
      // factory failed, construct fallback layer
547
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
80
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::MySqlLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::MySqlLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
538
3.34k
    {
539
3.34k
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
3.34k
                                                               std::forward<Args>(extraArgs)...);
541
3.34k
      if (nextLayer != nullptr)
542
3.34k
      {
543
3.34k
        return nextLayer;
544
3.34k
      }
545
546
      // factory failed, construct fallback layer
547
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
3.34k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*, unsigned short, unsigned short), unsigned short&, unsigned short&>(pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*, unsigned short, unsigned short), unsigned char*, unsigned long, pcpp::Packet*, unsigned short&, unsigned short&)
Line
Count
Source
538
25.3k
    {
539
25.3k
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
25.3k
                                                               std::forward<Args>(extraArgs)...);
541
25.3k
      if (nextLayer != nullptr)
542
23.9k
      {
543
23.9k
        return nextLayer;
544
23.9k
      }
545
546
      // factory failed, construct fallback layer
547
1.39k
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
25.3k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::WireGuardLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::WireGuardLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
538
1.43k
    {
539
1.43k
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
1.43k
                                                               std::forward<Args>(extraArgs)...);
541
1.43k
      if (nextLayer != nullptr)
542
1.43k
      {
543
1.43k
        return nextLayer;
544
1.43k
      }
545
546
      // factory failed, construct fallback layer
547
0
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
1.43k
    }
pcpp::Layer* pcpp::Layer::tryConstructNextLayerFromFactoryWithFallback<pcpp::PayloadLayer, pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*)>(pcpp::SipLayer* (*)(unsigned char*, unsigned long, pcpp::Layer*, pcpp::Packet*), unsigned char*, unsigned long, pcpp::Packet*)
Line
Count
Source
538
53.9k
    {
539
53.9k
      auto nextLayer = constructNextLayerFromFactory<TFactory>(factoryFn, data, dataLen, packet,
540
53.9k
                                                               std::forward<Args>(extraArgs)...);
541
53.9k
      if (nextLayer != nullptr)
542
1.81k
      {
543
1.81k
        return nextLayer;
544
1.81k
      }
545
546
      // factory failed, construct fallback layer
547
52.1k
      return constructNextLayer<TFallback>(data, dataLen, packet);
548
53.9k
    }
549
550
    /// @brief Check if the data is large enough to reinterpret as a type
551
    ///
552
    /// The data must be non-null and at least as large as the type
553
    ///
554
    /// @tparam T The type to reinterpret as
555
    /// @param data The data to check
556
    /// @param dataLen The length of the data
557
    /// @return True if the data is large enough to reinterpret as T, false otherwise
558
    template <typename T> static bool canReinterpretAs(const uint8_t* data, size_t dataLen)
559
1.64M
    {
560
1.64M
      return data != nullptr && dataLen >= sizeof(T);
561
1.64M
    }
bool pcpp::Layer::canReinterpretAs<pcpp::arphdr>(unsigned char const*, unsigned long)
Line
Count
Source
559
11.6k
    {
560
11.6k
      return data != nullptr && dataLen >= sizeof(T);
561
11.6k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::iphdr>(unsigned char const*, unsigned long)
Line
Count
Source
559
821k
    {
560
821k
      return data != nullptr && dataLen >= sizeof(T);
561
821k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::dhcp_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
17.6k
    {
560
17.6k
      return data != nullptr && dataLen >= sizeof(T);
561
17.6k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::vrrp_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
18.2k
    {
560
18.2k
      return data != nullptr && dataLen >= sizeof(T);
561
18.2k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::ip6_hdr>(unsigned char const*, unsigned long)
Line
Count
Source
559
210k
    {
560
210k
      return data != nullptr && dataLen >= sizeof(T);
561
210k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::vlan_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
37.5k
    {
560
37.5k
      return data != nullptr && dataLen >= sizeof(T);
561
37.5k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::MplsLayer::mpls_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
2.27k
    {
560
2.27k
      return data != nullptr && dataLen >= sizeof(T);
561
2.27k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::igmp_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
5.16k
    {
560
5.16k
      return data != nullptr && dataLen >= sizeof(T);
561
5.16k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::igmpv3_query_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
20
    {
560
20
      return data != nullptr && dataLen >= sizeof(T);
561
20
    }
bool pcpp::Layer::canReinterpretAs<pcpp::igmpv3_report_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
1.58k
    {
560
1.58k
      return data != nullptr && dataLen >= sizeof(T);
561
1.58k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::ssl_tls_record_layer>(unsigned char const*, unsigned long)
Line
Count
Source
559
328k
    {
560
328k
      return data != nullptr && dataLen >= sizeof(T);
561
328k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::tpkthdr>(unsigned char const*, unsigned long)
Line
Count
Source
559
175k
    {
560
175k
      return data != nullptr && dataLen >= sizeof(T);
561
175k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::vxlan_header>(unsigned char const*, unsigned long)
Line
Count
Source
559
6.85k
    {
560
6.85k
      return data != nullptr && dataLen >= sizeof(T);
561
6.85k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::stp_tcn_bpdu>(unsigned char const*, unsigned long)
Line
Count
Source
559
1.97k
    {
560
1.97k
      return data != nullptr && dataLen >= sizeof(T);
561
1.97k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::stp_conf_bpdu>(unsigned char const*, unsigned long)
Line
Count
Source
559
2.16k
    {
560
2.16k
      return data != nullptr && dataLen >= sizeof(T);
561
2.16k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::rstp_conf_bpdu>(unsigned char const*, unsigned long)
Line
Count
Source
559
1.11k
    {
560
1.11k
      return data != nullptr && dataLen >= sizeof(T);
561
1.11k
    }
bool pcpp::Layer::canReinterpretAs<pcpp::mstp_conf_bpdu>(unsigned char const*, unsigned long)
Line
Count
Source
559
68
    {
560
68
      return data != nullptr && dataLen >= sizeof(T);
561
68
    }
562
  };
563
564
  inline std::ostream& operator<<(std::ostream& os, const pcpp::Layer& layer)
565
0
  {
566
0
    os << layer.toString();
567
0
    return os;
568
0
  }
569
}  // namespace pcpp