Hi I have a requirement in which enums are defined from 1 to 225, but the problem of here is 1 to 10 enum strings are different and from 11 to 225 are same.
Should we need to write for 11 to 225 or else any range is allowed ? asked 17 May '16, 06:07 Dinesh Babu ... edited 17 May '16, 07:07 grahamb ♦ |
One Answer:
Hi, given your description you should use a range_string array instead of value_string array. Please have a look at doc/README.dissector document, more specifically the chapter 1.5 and "ranges" section. answered 17 May '16, 06:14 Pascal Quantin |
Thanks Pascal, It worked for me.