aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-meta.c
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45017
2012-08-10convert some simple uses to use ephemeral memoryMichael Mann1-13/+7
svn path=/trunk/; revision=44413
2012-07-27Sort value-string array by value to allow extended-value-string binary search;Bill Meier1-3/+6
Add XXX comments as to possible missing entries in a value-string array. svn path=/trunk/; revision=44071
2012-07-27Fix some potential integer arithmetic overflow issues;Bill Meier1-52/+178
Create/use extended value strings to access certain value string arrays; Remove some unneeded initializers; Reformat hf[] entries. svn path=/trunk/; revision=44069
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-02-04From Tobias Witek:Anders Broman1-11/+25
Improved filtering for TBCD values (IMSI and IMEI) in packet-meta. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6782 svn path=/trunk/; revision=40835
2012-01-28From Tobias Witek:Anders Broman1-2/+13
Add support for a new dissector (MTP2) to the 'meta' dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6717 svn path=/trunk/; revision=40751
2012-01-28From Tobias Witek:Anders Broman1-0/+3
Allow dissectors to indicate that an ATM AAL5 frame contains SSCOP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6717 svn path=/trunk/; revision=40750
2012-01-13Minor cleanup:Bill Meier1-9/+54
Merge packet-meta.h into packet-meta.c; Remove an unneeded #include; Remove an unused variable. svn path=/trunk/; revision=40452
2012-01-12Various minor mods;Bill Meier1-56/+59
- check-col() not needed; - use tvb_new_subset_remaining() iso tvb_new(); - #if 0 (currently ?) unused 'erf_handle'; - Convert some '4 space tabs' to 4 spaces; - other reformatting. svn path=/trunk/; revision=40446
2012-01-12From Tobias Witek: Add dissector table to 'meta' dissector.Bill Meier1-2/+14
The attached patch adds a dissector table to the 'meta' dissector so that other protocol dissectors can register for specific values of 'meta.proto'. Additionally, the patch also adds three more protocol values. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6730 svn path=/trunk/; revision=40445
2012-01-05From Tobias Witek:Anders Broman1-9/+20
Patch to correctly format IMSI, IMEI and mobile cell in packet-meta.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6706 svn path=/trunk/; revision=40392
2011-12-28Fix memory leaks involving tvb_get_string[z]().Chris Maynard1-0/+3
svn path=/trunk/; revision=40312
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-12From Tobias Witek: Anders Broman1-6/+12
This patch extends the ATM parser so as to allow GPRS NS traffic encapsulated in ATM AAL5. Additionally, added support for this into the 'Meta' dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6447 svn path=/trunk/; revision=39394
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-3/+3
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-05-19#if 0 some not currently used code: Fixes Coverity 966 [UNUSED]Bill Meier1-430/+430
Convert apparent "4 space tabs" to "4 spaces". svn path=/trunk/; revision=37302
2011-01-16There's no need to pass the result of tvb_get_ptr() as the 'value' inJeff Morriss1-9/+9
proto_tree_add_*(): just use proto_tree_add_item(). Replace some tvb_get_ptr()s with tvb_get_ephemeral_string() or tvb_get_const_stringz(). Use tvb_memeql() & tvb_memcmp(). svn path=/trunk/; revision=35558
2011-01-13From Clemens Auer:Jaap Keuter1-2/+54
This patch adds support for the following fields in Meta protocol: - Deciphered - Local Device ID, - Remote Device ID, - Tap Group ID, - TLLI, - Calling Station ID, - Called Station ID svn path=/trunk/; revision=35524
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-10-10Define some fcns & vars as static; Some #includes not req'd; packet-mikey.h ↵Bill Meier1-1/+1
not req'd. svn path=/trunk/; revision=34464
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2010-02-01C-ize a C++ comment.Gerald Combs1-1/+1
svn path=/trunk/; revision=31762
2010-02-01From Tobias Witek:Anders Broman1-48/+40
Replace ERF dissector with ATM dissector for protocols 'FP Hint' and 'META' https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4384 svn path=/trunk/; revision=31761
2009-11-05From Tobias Witek:Anders Broman1-1/+3
w protocols: UMTS RLC (ETSI TS 125 322), UMTS MAC (ETSI TS 125 321) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3495 svn path=/trunk/; revision=30838
2009-10-09hf[]: Use NUL for "blurb" instead of empty text string;Bill Meier1-23/+21
#include <stdio.h> & <stdlib.h> not needed. svn path=/trunk/; revision=30431
2009-10-09From Tobias Witek:Anders Broman1-0/+534
New protocols: UMTS RLC (ETSI TS 125 322), UMTS MAC (ETSI TS 125 321). This does not currently compile cleanly but checking it in to be worked on. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3495 svn path=/trunk/; revision=30414