diff options
author | Anders Broman <anders.broman@ericsson.com> | 2006-11-29 06:44:07 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2006-11-29 06:44:07 +0000 |
commit | 6c9ce8acf8610f9c5ff99215eb3650ec0b6e0688 (patch) | |
tree | 8ec6fc9d92c3351e1dec0eec3a14a7a1290a6155 /epan/dissectors/packet-bssgp.c | |
parent | 35482921b20efde6d5856cad5df217bfabd323c8 (diff) | |
download | wireshark-6c9ce8acf8610f9c5ff99215eb3650ec0b6e0688.tar.gz wireshark-6c9ce8acf8610f9c5ff99215eb3650ec0b6e0688.tar.bz2 wireshark-6c9ce8acf8610f9c5ff99215eb3650ec0b6e0688.zip |
Froim Rene Pilz:
This patch consists also the last issues. Additionally it solves:
- For the SSCOP frames the AAL5 decoding was not performed due to an earlier patch. This caused that no SSCOP message was properly decoded.
- As the detection between a LANE frame and a SSCOP frame is rather hard a switch within the atm dissector is included which enforce SSCOP dissecting over a LANE frame. At the moment I do not see a better solution for that.
svn path=/trunk/; revision=20013
Diffstat (limited to 'epan/dissectors/packet-bssgp.c')
-rw-r--r-- | epan/dissectors/packet-bssgp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bssgp.c b/epan/dissectors/packet-bssgp.c index 39596bfb1d..6704bf5ab5 100644 --- a/epan/dissectors/packet-bssgp.c +++ b/epan/dissectors/packet-bssgp.c @@ -2892,6 +2892,11 @@ decode_iei_tlli(bssgp_ie_t *ie, build_info_t *bi, int ie_start_offset) { col_append_sep_fstr(bi->pinfo->cinfo, COL_INFO, BSSGP_SEP, "TLLI %#4x", tlli); } + + if (check_col(bi->pinfo->cinfo, COL_BSSGP_TLLI)) { + col_add_fstr(bi->pinfo->cinfo, COL_BSSGP_TLLI, "%#04x", tlli); + } + decode_nri(bi->bssgp_tree, bi, tlli); } |