You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am am trying to put a serialized PDU &packet (serialization_type) back into a PDU &packet to send it.
my Code:
PDU *new_pdu = sniffer.next_packet();
PDU &packet = *new_pdu;
auto ser_packet = packet.serialize();
//then i do some changes in my serialized pdu....
sender.send(ser_packet); // Here the Eroor occures, because the send function needs a Tins::PDU &pdu
delete new_pdu;
Can you please halp me to solve this problem?
The text was updated successfully, but these errors were encountered:
Hello, I am am trying to put a serialized PDU &packet (serialization_type) back into a PDU &packet to send it.
my Code:
Can you please halp me to solve this problem?
The text was updated successfully, but these errors were encountered: