PcapPlusPlus  Next
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
UdpLayer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Layer.h"
4 
6 
9 namespace pcpp
10 {
13 #pragma pack(push, 1)
14  struct udphdr
15  {
17  uint16_t portSrc;
19  uint16_t portDst;
21  uint16_t length;
23  uint16_t headerChecksum;
24  };
25 #pragma pack(pop)
26  static_assert(sizeof(udphdr) == 8, "udphdr size is not 8 bytes");
27 
30  class UdpLayer : public Layer
31  {
32  public:
38  UdpLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet)
39  : Layer(data, dataLen, prevLayer, packet, UDP)
40  {}
41 
45  UdpLayer(uint16_t portSrc, uint16_t portDst);
46 
51  {
52  return reinterpret_cast<udphdr*>(m_Data);
53  }
54 
56  uint16_t getSrcPort() const;
57 
59  uint16_t getDstPort() const;
60 
65  uint16_t calculateChecksum(bool writeResultToPacket);
66 
71  static inline bool isDataValid(const uint8_t* data, size_t dataLen);
72 
73  // implement abstract methods
74 
77  void parseNextLayer() override;
78 
80  size_t getHeaderLen() const override
81  {
82  return sizeof(udphdr);
83  }
84 
86  void computeCalculateFields() override;
87 
88  std::string toString() const override;
89 
91  {
93  }
94  };
95 
96  bool UdpLayer::isDataValid(const uint8_t* data, size_t dataLen)
97  {
98  return data && dataLen >= sizeof(udphdr);
99  }
100 } // namespace pcpp
Definition: Layer.h:60
Definition: Packet.h:22
Definition: UdpLayer.h:31
udphdr * getUdpHeader() const
Definition: UdpLayer.h:50
OsiModelLayer getOsiModelLayer() const override
Definition: UdpLayer.h:90
uint16_t getDstPort() const
void computeCalculateFields() override
Calculate udphdr::headerChecksum field.
static bool isDataValid(const uint8_t *data, size_t dataLen)
Definition: UdpLayer.h:96
uint16_t getSrcPort() const
size_t getHeaderLen() const override
Definition: UdpLayer.h:80
void parseNextLayer() override
uint16_t calculateChecksum(bool writeResultToPacket)
UdpLayer(uint16_t portSrc, uint16_t portDst)
UdpLayer(uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet)
Definition: UdpLayer.h:38
std::string toString() const override
The main namespace for the PcapPlusPlus lib.
OsiModelLayer
An enum representing OSI model layers.
Definition: ProtocolType.h:225
@ OsiModelTransportLayer
Transport layer (layer 4)
Definition: ProtocolType.h:233
const ProtocolType UDP
UDP protocol.
Definition: ProtocolType.h:38
Definition: UdpLayer.h:15
uint16_t length
Length of header and payload in bytes.
Definition: UdpLayer.h:21
uint16_t portSrc
Source port.
Definition: UdpLayer.h:17
uint16_t portDst
Destination port.
Definition: UdpLayer.h:19
uint16_t headerChecksum
Error-checking of the header and data.
Definition: UdpLayer.h:23