Is there a nice clean way to convert tvbuff_t to an unsigned char? I am using an external library for some decryption and it accepts the unsigned char*. I was looking through the Wireshark source code but only came up with:
Which doesn't give me enough information to be able to convert, that is unless I can simply do a byte for byte conversion? Thank you for your time, Brandon asked 26 Jul '11, 08:16 officialhopsof edited 29 Jul '11, 11:56 helloworld |
One Answer:
See README.developer section 1.4.2 "Extracting data from packets". Note the caveats around using functions such as answered 26 Jul '11, 10:04 grahamb ♦ Found it! Thanks! (26 Jul '11, 12:24) officialhopsof 2 If this is the correct answer please click the tick so it shows as the accepted answer. (27 Jul '11, 01:55) Jaap ♦ |
Oh, also, I do not need the header information, I simply need the actual message data.