ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Ethereal-dev: Re: [Ethereal-dev] TCAP: how to register for arbitrary list of SSNs?

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Jeff Morriss <jeff.morriss@xxxxxxxxxxx>
Date: Thu, 05 Aug 2004 17:01:02 -0400


Guy Harris wrote:

Jeff Morriss said:

The fact that the TCAP dissector only registers for SSNs 5-12 has
bothered me for some time though I have never really thought of the best
way to fix it.

Ideally, it should be possible for the TCAP dissector to register for
any SCCP/SUA SSN (2-254) though I can't think of a good way to do that


A preference that gives a list of SSNs?

We should probably add a new preference type for ranges; the syntax of a
range would probably be the same as we have for packet ranges, i.e. a
comma-separated list of numerical values or numerical value subranges. (In fact, we could probably use some of the code in "range.c" for this,
e.g. "packet_range_convert_str()"; we'd probably want to separate the code

In fact I had thought that something like 'packet_range_convert_str()' would be ideal but I had no desire to write such a function (and I wasn't aware of where such code be copied from).

that knows about "ranges" in the sense of a specification of a subset of
[0,UINT_MAX] from the code that knows about "packet ranges", with all the
counts and notion of "selected" and "marked" - i.e., turn the

    /* user specified range(s) */
    guint           nranges;        /* number of entries in ranges (0
based) */
    range_admin_t   ranges[MaxRange];

stuff in "packet_range_t" into a type of its own, and put an object of
that type into a "packet_range_t".)

That could be used in the ASN.1 plugin as well, as it already has a
mechanism for specifying port ranges.

I hadn't thought of doing a simple space-separated list of integers as ASN.1 does. <sigh>