PcapPlusPlus
Next
|
Represents a DoIP Vehicle Identification Request with VIN. More...
#include <DoIpLayer.h>
Public Member Functions | |
DoIpVehicleIdentificationRequestWithVIN (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) | |
Constructs the layer from raw DoIP packet data. More... | |
DoIpVehicleIdentificationRequestWithVIN (const std::array< uint8_t, DOIP_VIN_LEN > &vin={}) | |
Constructs the message using the specified VIN. More... | |
std::array< uint8_t, DOIP_VIN_LEN > | getVIN () const |
Gets the Vehicle Identification Number (VIN). More... | |
void | setVIN (const std::array< uint8_t, DOIP_VIN_LEN > &vin) |
Sets the Vehicle Identification Number (VIN). More... | |
std::string | getSummary () const |
Returns a human-readable summary of the message. | |
DoIpPayloadTypes | getPayloadType () const override |
Returns the DoIP payload type for this message. | |
![]() | |
std::string | getPayloadTypeAsStr () const |
DoIpProtocolVersion | getProtocolVersion () const |
std::string | getProtocolVersionAsStr () const |
void | setProtocolVersion (DoIpProtocolVersion version) |
void | setProtocolVersion (uint8_t rawVersion) |
uint8_t | getInvertProtocolVersion () const |
void | setInvertProtocolVersion (uint8_t iVersion) |
uint32_t | getPayloadLength () const |
void | setPayloadLength (uint32_t length) |
void | parseNextLayer () override |
parse UDS layer | |
size_t | getHeaderLen () const override |
std::string | toString () const override |
void | computeCalculateFields () override |
Each layer can compute field values automatically using this method. This is an abstract method. | |
OsiModelLayer | getOsiModelLayer () const override |
![]() | |
~Layer () override | |
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 override |
Static Public Member Functions | |
static bool | isDataLenValid (size_t dataLen) |
Checks if the VIN data length is valid. More... | |
![]() | |
static DoIpLayer * | parseDoIpLayer (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) |
static bool | isDoIpPort (uint16_t port) |
static bool | isDataValid (uint8_t *data, size_t dataLen) |
Additional Inherited Members | |
![]() | |
template<typename T , typename... Args> | |
Layer * | constructNextLayer (uint8_t *data, size_t dataLen, Packet *packet, Args &&... extraArgs) |
template<typename T , typename TFallback , typename... Args> | |
Layer * | tryConstructNextLayerWithFallback (uint8_t *data, size_t dataLen, Packet *packet, Args &&... extraArgs) |
![]() | |
template<typename T > | |
static bool | canReinterpretAs (const uint8_t *data, size_t dataLen) |
Check if the data is large enough to reinterpret as a type. More... | |
Represents a DoIP Vehicle Identification Request with VIN.
This message is used to identify a vehicle based on its Vehicle Identification Number (VIN).
pcpp::DoIpVehicleIdentificationRequestWithVIN::DoIpVehicleIdentificationRequestWithVIN | ( | uint8_t * | data, |
size_t | dataLen, | ||
Layer * | prevLayer, | ||
Packet * | packet | ||
) |
Constructs the layer from raw DoIP packet data.
[in] | data | Pointer to raw packet data. |
[in] | dataLen | Length of the raw data. |
[in] | prevLayer | Pointer to the previous layer. |
[in] | packet | Pointer to the parent packet instance. |
|
explicit |
Constructs the message using the specified VIN.
[in] | vin | A 17-byte Vehicle Identification Number. |
std::array<uint8_t, DOIP_VIN_LEN> pcpp::DoIpVehicleIdentificationRequestWithVIN::getVIN | ( | ) | const |
Gets the Vehicle Identification Number (VIN).
|
inlinestatic |
Checks if the VIN data length is valid.
[in] | dataLen | Length of the data buffer. |
void pcpp::DoIpVehicleIdentificationRequestWithVIN::setVIN | ( | const std::array< uint8_t, DOIP_VIN_LEN > & | vin | ) |
Sets the Vehicle Identification Number (VIN).
[in] | vin | A 17-byte Vehicle Identification Number (VIN). |