| 88 | } |
| 89 | |
| 90 | void |
| 91 | GIOP_Base::start_decoding() |
| 92 | { |
| 93 | proto_item *ti = 0; |
| 94 | proto_tree *subtree = 0; |
| 95 | col_set_str (pinfo_->cinfo, COL_PROTOCOL, this->proto_label_); |
| 96 | if (tree_) { |
| 97 | ti = proto_tree_add_item(tree_, |
| 98 | this->proto_id_, |
| 99 | tvb_, *offset_, -1, 0); |
| 100 | subtree = proto_item_add_subtree (ti, this->ett_base_); |
| 101 | this->tree_ = subtree; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | DecodeFN |
| 106 | GIOP_Base::find_giop_decoder(const gchar* opname) |
no outgoing calls
no test coverage detected