aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2005-04-09KRB_ERROR can be returned and it is not encapsulatedRonnie Sahlberg1-0/+7
svn path=/trunk/; revision=14032
2005-04-08Fix brokenness from previous patch.Gerald Combs1-301/+162
svn path=/trunk/; revision=14031
2005-04-08Add a length check, fix up some comments.Gerald Combs1-162/+302
svn path=/trunk/; revision=14029
2005-04-08From Neil KettleRonnie Sahlberg1-2/+9
Fix two potential buffer overflow bugs in fc els svn path=/trunk/; revision=14027
2005-04-07From Didier:Ronnie Sahlberg2-19/+10
optimization for COLUMNS to make ethereal faster when filtering optimization to make the slow find_protocol_by_id() fast. (idea from Didier, implementation modified by me to be less intrusive) svn path=/trunk/; revision=14026
2005-04-07updating Mark C Browns informationRonnie Sahlberg2-3/+6
svn path=/trunk/; revision=14025
2005-04-07make the ip ip field we use as the reassembly key a bit moreRonnie Sahlberg1-1/+5
"unique" by mixing in the source and destination address. svn path=/trunk/; revision=14024
2005-04-07From Greg MorrisRonnie Sahlberg1-4/+12
Fix the breakage from my previous patch svn path=/trunk/; revision=14022
2005-04-05use proto_item_appent_text() instead of proto_item_append_string() since the ↵Ronnie Sahlberg1-1/+1
hf field is not neccessarily a FT_STRING value always. svn path=/trunk/; revision=14019
2005-04-05Try not to call proto_tree_add_text() with negative lengths in error messages.Gerald Combs1-5/+5
svn path=/trunk/; revision=14018
2005-04-04Add length checks so that we don't overflow buffers.Gerald Combs1-2/+3
svn path=/trunk/; revision=14016
2005-04-04From Lars RuoffRonnie Sahlberg1-27/+35
Make it possible to tap 4 PDUs from one frame svn path=/trunk/; revision=14015
2005-04-04Don't generate a "dissector bug" warning in cases where a dissector callsGerald Combs1-1/+1
proto_tree_add_*(tree, tvb, offset, 0, ...); and "offset" is greater than the length remaining in the tvbuff. svn path=/trunk/; revision=14014
2005-04-04From Cvetan IvanovRonnie Sahlberg2-1/+19
Updates to Q931, SM and ISUP svn path=/trunk/; revision=14013
2005-04-04the definition of tcp address structure changed between version 3 and version 4Ronnie Sahlberg1-6/+66
make version 4 dissect tcp addr structure properly svn path=/trunk/; revision=14012
2005-04-04From Kenny ShumardRonnie Sahlberg2-38/+367
Update for IAX2 svn path=/trunk/; revision=14011
2005-04-04From Martin MathiesonRonnie Sahlberg1-3/+7
small update for SIP request/response matching. svn path=/trunk/; revision=14010
2005-04-04the netware dissector is the only dissector that accesses fvalue_ functions ↵Ronnie Sahlberg1-13/+68
directly. this made it crash for some packets when the filter speedup patch was enabled, since some of these finfo nodes did no longer exist. as far as i can tell the only other instances of fvalue_ usage is from some tap based functions but all those do take care to make sure that the fields being accessed are all part of a filter, and will thus never be optimized away. The patch does two things 1, refactor the code but do not change the logic to reduce the number of places where the external fvalue_ functions are called from. 2, add code to force the tree to be visible (and thus change the code) so that the speedup patch will not optimize these fiuelds away. svn path=/trunk/; revision=14009
2005-04-02From Tim Endean:Anders Broman2-9/+380
1) Return errors. 2) Return rejects. Numerous other bugs fixed. svn path=/trunk/; revision=14005
2005-04-01from Jeremy JougletRonnie Sahlberg1-8/+22
some GTP updates and some tips for those using cygwin svn path=/trunk/; revision=14003
2005-04-01update for padbyte on old juniper boxensRonnie Sahlberg1-2/+8
svn path=/trunk/; revision=14002
2005-04-01from Lars RRonnie Sahlberg1-35/+12
TAP order of caller update svn path=/trunk/; revision=14001
2005-04-01tiny bugfix for gsmmapRonnie Sahlberg2-2/+3
svn path=/trunk/; revision=14000
2005-04-01From Mark C Brown NETTL updatesRonnie Sahlberg7-3/+355
svn path=/trunk/; revision=13999
2005-04-01Give it an RCS ID.Guy Harris1-0/+2
Set the svn:keywords and svn:eol-style properties to the standard values. svn path=/trunk/; revision=13998
2005-04-01From Giles ScottRonnie Sahlberg2-0/+161
New protocol ARUBA ADP svn path=/trunk/; revision=13997
2005-04-01From Charlie Lenahan: support for some HP switch protocol.Guy Harris2-0/+271
Fix some damage to the AUTHORS file. svn path=/trunk/; revision=13996
2005-04-01Get rid of an unused variable.Guy Harris1-34/+1
Include "packet-gsm_map.h", not "packet-gsm_map.c". Check in the regenerated CAMEL dissector. svn path=/trunk/; revision=13995
2005-04-01"get_conv_info()" doesn't use the tvbuff passed to it, so don't pass itGuy Harris1-3/+3
one. svn path=/trunk/; revision=13994
2005-04-01Rename "register_ethereal_tap()" to "register_tap_listener_cmd_arg()" asGuy Harris3-0/+92
it's used to register a callback for a tap listener invoked if the specified command line argument is specified to the "-z" flag. Move it, along with routines to: look up a "-z" argument in the table constructed by "register_tap_listener_cmd_arg()" and either save the full argument to "-z" and the corresponding listener if it's found or return a failure indication if it isn't; list the available tap listeners; call the "init" routines for the tap listeners saved in the table above; and have Ethereal and Tethereal use those routines. svn path=/trunk/; revision=13993
2005-04-01Give the RFC number for IGMPv3.Guy Harris1-2/+2
svn path=/trunk/; revision=13990
2005-03-31Fix a couple of "proto_tree_add_text()" calls to pass the right arguments.Guy Harris1-2/+9
svn path=/trunk/; revision=13989
2005-03-31Add a link to a more recent Apple page describing DSI.Guy Harris1-0/+3
svn path=/trunk/; revision=13988
2005-03-31 From Jacques, Olivier: Length of digit_str wrongly calculated.Anders Broman2-12/+29
Free the string, fix dissection of some elements. svn path=/trunk/; revision=13986
2005-03-31http://www.shaftnet.org/~pizza/software/capturefrm.txt is currently notGuy Harris1-0/+4
available; add an archive.org URL for it. svn path=/trunk/; revision=13983
2005-03-31Further IE dissection updates.Anders Broman1-13/+34
svn path=/trunk/; revision=13982
2005-03-30Small bug fixAnders Broman2-13/+123
svn path=/trunk/; revision=13981
2005-03-30Improve some debug messages.Anders Broman1-4/+11
svn path=/trunk/; revision=13980
2005-03-30Fix the handling of the length parameter in the DATA chunk.Michael Tüxen1-8/+6
This is a quick fix. A systematic follows... svn path=/trunk/; revision=13978
2005-03-30From Ulf Lamping:Anders Broman1-1/+1
Fix a "off by one" error. svn path=/trunk/; revision=13977
2005-03-30From TimRonnie Sahlberg1-0/+1
small bugfix for packet-ber.c if packet is malformed, prevent dereferenceing a null pointer svn path=/trunk/; revision=13976
2005-03-29Add a tvb_ensure_bytes_exist() and fix a few other offset-related bugs.Gerald Combs1-3/+4
svn path=/trunk/; revision=13974
2005-03-29From Martin Mathieson:Anders Broman1-1/+1
- bump up SDP_MAX_PAYLOAD_TYPES to 20 (I have an mgcp capture where a media gateway responded with 12 media types, resulting in a crash). Probably more care needs to be taken while parsing the list of media types though... svn path=/trunk/; revision=13973
2005-03-29Remove a g_assert() left over from debugging.Gerald Combs1-1/+0
svn path=/trunk/; revision=13971
2005-03-29Use an offset of 0 in PER_NOT_DECODED_YET() so that we don't generate aGerald Combs1-1/+1
dissector bug error. svn path=/trunk/; revision=13970
2005-03-29Fix a compiler warning.Gerald Combs1-1/+3
svn path=/trunk/; revision=13969
2005-03-29Add a tvb_ensure_bytes_exist().Gerald Combs1-0/+1
svn path=/trunk/; revision=13968
2005-03-29README.developer says:Gerald Combs6-54/+68
"PROTOABBREV A name for the protocol for use in filter expressions; it should contain only lower-case letters, digits, and hyphens." In proto_register_protocol(), generate a warning if PROTOABBREV contains invalid characters. Along with the list above, allow underscores and periods. Fix up whitespace. Lower-case PROTOABBREV in several dissectors. svn path=/trunk/; revision=13967
2005-03-29from SidRonnie Sahlberg2-1/+334
updates to FTAM svn path=/trunk/; revision=13966
2005-03-29from Sid Ronnie Sahlberg1-60/+5
bugfix for ACSE svn path=/trunk/; revision=13965