PcapPlusPlus
UdpLayer.h
Go to the documentation of this file.
1 #ifndef PACKETPP_UDP_LAYER
2 #define PACKETPP_UDP_LAYER
3 
4 #include "Layer.h"
5 
7 
12 namespace pcpp
13 {
14 
19 #pragma pack(push,1)
20  struct udphdr {
22  uint16_t portSrc;
24  uint16_t portDst;
26  uint16_t length;
28  uint16_t headerChecksum;
29  };
30 #pragma pack(pop)
31 
32 
37  class UdpLayer : public Layer
38  {
39  public:
47  UdpLayer(uint8_t* data, size_t dataLen, Layer* prevLayer, Packet* packet) : Layer(data, dataLen, prevLayer, packet) { m_Protocol = UDP; }
48 
54  UdpLayer(uint16_t portSrc, uint16_t portDst);
55 
60  inline udphdr* getUdpHeader() { return (udphdr*)m_Data; }
61 
67  uint16_t calculateChecksum(bool writeResultToPacket);
68 
69  // implement abstract methods
70 
75  void parseNextLayer();
76 
80  inline size_t getHeaderLen() { return sizeof(udphdr); }
81 
86 
87  std::string toString();
88 
90  };
91 
92 } // namespace pcpp
93 
94 #endif /* PACKETPP_UDP_LAYER */
void computeCalculateFields()
void parseNextLayer()
Definition: ProtocolType.h:222
uint16_t calculateChecksum(bool writeResultToPacket)
uint16_t portDst
Definition: UdpLayer.h:24
Definition: UdpLayer.h:37
uint16_t headerChecksum
Definition: UdpLayer.h:28
uint16_t length
Definition: UdpLayer.h:26
Definition: Layer.h:70
size_t getHeaderLen()
Definition: UdpLayer.h:80
Definition: Packet.h:26
OsiModelLayer
Definition: ProtocolType.h:213
Definition: UdpLayer.h:20
Definition: ProtocolType.h:51
uint16_t portSrc
Definition: UdpLayer.h:22
std::string toString()
OsiModelLayer getOsiModelLayer()
Definition: UdpLayer.h:89
UdpLayer(uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet)
Definition: UdpLayer.h:47
udphdr * getUdpHeader()
Definition: UdpLayer.h:60
The main namespace for the PcapPlusPlus lib.