Does Wireshark provide the ability to lookup strings like it does for values?
The value_string
's are useful for mapping numbers to strings, but I'm looking for a way to map strings to other strings. For example, a protocol might contain an abbreviation or acronym for a longer string and I'd like to lookup/display the longer string instead of the abbreviated string. I know I can use BASE_CUSTOM
for this, but before I do, I was wondering if there was already something built in to Wireshark that supports this.
Examples:
For value_string
, we might have:
static const value_string foo_vals[] = {
{1, "Hello World"},
{2, "Goodbye Cruel World"},
{0, NULL}
};
... but I want something like a string_string
:
static const string_string foo_vals[] = {
{"HW", "Hello World"},
{"GCW", "Goodbye Cruel World"},
{NULL, NULL}
};
Thanks.