PcapPlusPlus
24.09
|
#include <StpLayer.h>
Public Member Functions | |
RapidStpLayer (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) | |
RapidStpLayer () | |
rstp_conf_bpdu * | getRstpConfHeader () const |
uint8_t | getVersion1Len () const |
void | setVersion1Len (uint8_t value) |
size_t | getHeaderLen () const |
void | parseNextLayer () |
Parses next layer. | |
std::string | toString () const |
Public Member Functions inherited from pcpp::StpConfigurationBPDULayer | |
StpConfigurationBPDULayer (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) | |
StpConfigurationBPDULayer () | |
stp_conf_bpdu * | getStpConfHeader () const |
uint8_t | getFlag () const |
void | setFlag (uint8_t value) |
uint64_t | getRootId () const |
void | setRootId (uint64_t value) |
uint16_t | getRootPriority () const |
void | setRootPriority (uint16_t value) |
uint16_t | getRootSystemIDExtension () const |
void | setRootSystemIDExtension (uint16_t value) |
pcpp::MacAddress | getRootSystemID () const |
void | setRootSystemID (const pcpp::MacAddress &value) |
uint32_t | getPathCost () const |
void | setPathCost (uint32_t value) |
uint64_t | getBridgeId () const |
void | setBridgeId (uint64_t value) |
uint16_t | getBridgePriority () const |
void | setBridgePriority (uint16_t value) |
uint16_t | getBridgeSystemIDExtension () const |
void | setBridgeSystemIDExtension (uint16_t value) |
pcpp::MacAddress | getBridgeSystemID () const |
void | setBridgeSystemID (const pcpp::MacAddress &value) |
uint16_t | getPortId () const |
void | setPortId (uint16_t value) |
double | getMessageAge () const |
void | setMessageAge (double value) |
double | getMaximumAge () const |
void | setMaximumAge (double value) |
double | getTransmissionInterval () const |
void | setTransmissionInterval (double value) |
double | getForwardDelay () const |
void | setForwardDelay (double value) |
Public Member Functions inherited from pcpp::StpTopologyChangeBPDULayer | |
StpTopologyChangeBPDULayer (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) | |
StpTopologyChangeBPDULayer () | |
stp_tcn_bpdu * | getStpTcnHeader () |
Public Member Functions inherited from pcpp::StpLayer | |
stp_header * | getStpHeader () const |
uint16_t | getProtoId () const |
void | setProtoId (uint16_t value) |
uint8_t | getVersion () const |
void | setVersion (uint8_t value) |
uint8_t | getType () const |
void | setType (uint8_t value) |
void | computeCalculateFields () |
Does nothing for this layer. | |
OsiModelLayer | getOsiModelLayer () const |
Public Member Functions inherited from pcpp::Layer | |
virtual | ~Layer () |
Layer * | getNextLayer () const |
Layer * | getPrevLayer () const |
ProtocolType | getProtocol () const |
bool | isMemberOfProtocolFamily (ProtocolTypeFamily protocolTypeFamily) const |
uint8_t * | getData () const |
size_t | getDataLen () const |
uint8_t * | getLayerPayload () const |
size_t | getLayerPayloadSize () const |
bool | isAllocatedToPacket () const |
void | copyData (uint8_t *toArr) const |
uint8_t * | getDataPtr (size_t offset=0) const |
Static Public Member Functions | |
static bool | isDataValid (const uint8_t *data, size_t dataLen) |
Static Public Member Functions inherited from pcpp::StpConfigurationBPDULayer | |
static bool | isDataValid (const uint8_t *data, size_t dataLen) |
Static Public Member Functions inherited from pcpp::StpTopologyChangeBPDULayer | |
static bool | isDataValid (const uint8_t *data, size_t dataLen) |
Static Public Member Functions inherited from pcpp::StpLayer | |
static bool | isDataValid (const uint8_t *data, size_t dataLen) |
static StpLayer * | parseStpLayer (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) |
Additional Inherited Members | |
Static Public Attributes inherited from pcpp::StpLayer | |
static pcpp::MacAddress | StpMulticastDstMAC |
STP protocol uses "01:80:C2:00:00:00" multicast address as destination MAC. | |
static pcpp::MacAddress | StpUplinkFastMulticastDstMAC |
STP Uplink Fast protocol uses "01:00:0C:CD:CD:CD" as destination MAC. | |
Represents Rapid Spanning Tree Protocol (RSTP)
|
inline |
A constructor that creates the layer from an existing packet raw data
[in] | data | A pointer to the raw data |
[in] | dataLen | Size of the data in bytes |
[in] | prevLayer | A pointer to the previous layer |
[in] | packet | A pointer to the Packet instance where layer will be stored in |
pcpp::RapidStpLayer::RapidStpLayer | ( | ) |
Empty c'tor to create a new Rapid STP layer. Initializes the protocol identifier, version and STP type fields with correct values
|
inlinevirtual |
Reimplemented from pcpp::StpConfigurationBPDULayer.
|
inline |
Get a pointer to Rapid STP header
|
inline |
Returns the length of version1 field. Fixed at 0x0 for Rapid STP
|
inlinestatic |
A static method that validates the input data
[in] | data | The pointer to the beginning of a byte stream of an Rapid STP packet |
[in] | dataLen | The length of the byte stream |
|
inline |
Returns the length of version1 field
[in] | value | Length of the version1 field |
|
inlinevirtual |
Reimplemented from pcpp::StpConfigurationBPDULayer.
Reimplemented in pcpp::MultipleStpLayer.