aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pcap.c
AgeCommit message (Collapse)AuthorFilesLines
2013-08-27Use dissector_delete_uint_range/dissector_add_uint_rangeAnders Broman1-20/+5
svn path=/trunk/; revision=51540
2013-06-14Remove check_col() and the occasional tree.Michael Mann1-4/+3
This leaves just the Pidl dissectors remaining for removal of check_col() in the dissectors directory. A small handful of check_col() calls remain outside of the dissectors. svn path=/trunk/; revision=49941
2013-05-27Postfix FT_NONE fields with "_element" string to reduce number of ↵Pascal Quantin1-320/+320
incompatible filters in ASN.1 dissectors https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2402 svn path=/trunk/; revision=49599
2013-05-14Upate to spec. 11.0.0Anders Broman1-21/+491
- fix problem with extension dissection. svn path=/trunk/; revision=49294
2013-04-11Update the ASN.1 based dissectors following the changes done in r48812Pascal Quantin1-2/+2
svn path=/trunk/; revision=48820
2012-09-24Regenerate asn.1 dissectors.Jakub Zawadzki1-7/+7
svn path=/trunk/; revision=45110
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-10Regenerate all asn.1 dissectors.Jakub Zawadzki1-133/+133
svn path=/trunk/; revision=44861
2012-08-15Fix field type for some 64 bits header fieldsPascal Quantin1-1/+1
svn path=/trunk/; revision=44513
2012-07-17Use G_MININT32 instead of -2^31 so as to get rid of 'this decimal constant ↵Pascal Quantin1-1/+1
is unsigned only in ISO C90' warning svn path=/trunk/; revision=43764
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-3/+3
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-15Update generated ASN1 *.[hc] files after recent work done by Jeff Morriss;Bill Meier1-1/+1
The only change in each file is in a comment showing the asn2wrs cmd used to build that file. svn path=/trunk/; revision=39427
2011-05-13Regenerate ASN.1 dissectors to update the #line directive.Stig Bjørlykke1-15/+15
svn path=/trunk/; revision=37118
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-127/+127
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-11-17- Update to 3GPP TS 25.413 V9.4.0 (2010-09).Anders Broman1-4/+26
- Fill the value_strings. svn path=/trunk/; revision=34929
2010-11-15Use value_string_ext fcns to access several value_string arrays.Bill Meier1-7/+15
svn path=/trunk/; revision=34890
2010-11-01Next PER dissectors related to rev. 34400 (empty constructed types with an ↵Tomas Kukosa1-3/+3
extension) are regenerated http://anonsvn.wireshark.org/viewvc?view=rev&revision=34400 svn path=/trunk/; revision=34740
2010-05-15Update to V9.1.0 (2010-03).Anders Broman1-1/+122
svn path=/trunk/; revision=32818
2010-05-11Add a little more code to avoid not-very-useful blurbs:Jeff Morriss1-50/+50
- Change spaces in the name to underscores before comparing it to the blurb. - Check if the type simply as T_ prepended to the name. - Don't put in a blurb of "NULL". and regenerate the dissectors. svn path=/trunk/; revision=32748
2010-05-11Regenerate a few more of the ASN.1 dissectorsJeff Morriss1-1082/+1082
svn path=/trunk/; revision=32745
2010-04-07#include <string.h> and/or #include <stdio.h> not needed.Bill Meier1-8/+7
svn path=/trunk/; revision=32417
2010-04-06#include <stdio.h> not needed.Bill Meier1-8/+7
svn path=/trunk/; revision=32405
2010-01-02Update to V9.0.0 (2009-12)Anders Broman1-464/+3575
svn path=/trunk/; revision=31414
2009-10-09Regenerate asn1 dissectors (no change, only some line offset changes)Kovarththanan Rajaratnam1-3/+3
svn path=/trunk/; revision=30454
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-06-26Re-generate asn1 dissectors after hf_register_info cleanup.Stig Bjørlykke1-49/+49
svn path=/trunk/; revision=28848
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-202/+202
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-05-16Regenerate all asn2wrs generated dissectors.Stig Bjørlykke1-59/+59
svn path=/trunk/; revision=28379
2009-04-14Use G_GINT64_CONSTANT in stead of G_GUINT4_CONSTANTAnders Broman1-3/+3
svn path=/trunk/; revision=28048
2009-04-14support UINT64 constants for upper value boundsTomas Kukosa1-3/+3
svn path=/trunk/; revision=28042
2009-03-25Make it possible to check for extension marker in SEQUENCE OF and SET OF.Anders Broman1-58/+58
Fore some reason the trace in bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3360 does not decode properly if dissecting the exension marker so leave that code #if 0:ed out for now. svn path=/trunk/; revision=27848
2009-02-07#include <epan/conversation.h> and/or #include <epan/emem.h> not req'd ...Bill Meier1-9/+7
svn path=/trunk/; revision=27390
2008-11-07asn2wrs regenerated files: see SVN #26728Bill Meier1-34/+18
svn path=/trunk/; revision=26729
2008-11-01Regenerate all asn2wrs generated dissectorsAnders Broman1-58/+58
svn path=/trunk/; revision=26670
2008-06-28Get rid of some unused code warnings.Anders Broman1-6/+4
svn path=/trunk/; revision=25627
2008-06-28Add som missing extension IE's and try to get rid of som unused code warnings.Anders Broman1-57/+255
svn path=/trunk/; revision=25625
2008-06-28To handle 64 bit constraints we also need to change FT_UINT32 to FT_UINT64Anders Broman1-4/+4
svn path=/trunk/; revision=25624
2008-03-03Add missing parts of the PCAP dissector.Gerald Combs1-0/+14847
svn path=/trunk/; revision=24541