forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPacketType.h
More file actions
61 lines (50 loc) · 870 Bytes
/
PacketType.h
File metadata and controls
61 lines (50 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
PacketType.h
Created on: 19 nov. 2019
Author: Herman
*/
#ifndef LIBRARIES_NETDUMP_SRC_PACKETTYPE_H_
#define LIBRARIES_NETDUMP_SRC_PACKETTYPE_H_
#include "Arduino.h"
namespace NetCapture
{
class PacketType
{
public:
enum PType : int
{
ARP,
IP,
UDP,
MDNS,
DNS,
SSDP,
DHCP,
WSDD,
NETBIOS,
SMB,
OTA,
TCP,
HTTP,
ICMP,
IGMP,
IPv4,
IPv6,
UKNW,
};
PacketType();
PacketType(PType pt) : ptype(pt) {};
operator PType() const
{
return ptype;
};
bool operator==(const PacketType& p)
{
return ptype == p.ptype;
};
String toString() const;
private:
PType ptype;
};
} /* namespace NetCapture */
#endif /* LIBRARIES_NETDUMP_SRC_PACKETTYPE_H_ */