[Wireshark-dev] Issue with add_new_data_source

2009-08-13 Thread Srinivasa Goda
HiI'm trying to decode a message in tcp segment and display it under new tab with "decoded PDU". In my call back dissector, i'm doing following tvbuff_t* d_tvb = tvb_new_real_data(dchunks, total_len, tvb_length_remaining(tvb, offset)); tvb_set_child_real_data_tvbuff(tvb, d_tvb); add

[Wireshark-dev] Issue with add_new_data_source

2009-08-13 Thread Srinivasa Goda
Hi, I'm trying to decode a message in tcp segment and display it under new tab with "decoded PDU". In my call back dissector, i'm doing following tvbuff_t* d_tvb = tvb_new_real_data(dchunks, total_len, tvb_length_remaining(tvb, offset)); tv