aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2011-11-01Remove comma at the end of several enumerator lists.Jeff Morriss13-28/+28
svn path=/trunk/; revision=39700
2011-11-01Disable the CIP dissector until we can solve the fuzz failures.Jeff Morriss1-0/+3
svn path=/trunk/; revision=39698
2011-10-31Fix compilation error:Stephen Fisher1-1/+1
In file included from packet-uaudp.c:39: packet-ua.h:32:38: error: no newline at end of file svn path=/trunk/; revision=39697
2011-10-31One "packet-" suffices.Guy Harris1-1/+1
svn path=/trunk/; revision=39696
2011-10-31From Martin Renold via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5730Alexis La Goutte7-203/+568
Dissector for HSR and PRP-1 Here is a patch that adds a dissector for HSR and for PRP-1. Both protocols are defined in IEC62439 Part 3. (High-availability Seamless Redundancy / Parallel Redundancy Protocol) The existing PRP dissector has been refactored to support both the old PRP (now called PRP-0) and the new PRP-1. There are three distinct dissectors: - HSR (ethertype 892F) - HSR/PRP supervision (ethertype 88FB) - PRP-0 and PRP-1 (trailer dissector; disabled by default) From me : * Fix Clang Warning * Add modification for CMakeLists.txt svn path=/trunk/; revision=39692
2011-10-31From Marek Tews via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6060Alexis La Goutte5-145/+274
Enhance Universal Alcatel Protocol Several fixes and heuristic version. You can also specify the ports (as in the previous version), if the heuristic version is not working properly. svn path=/trunk/; revision=39691
2011-10-31Try to fix warnings.Anders Broman4-2826/+190
svn path=/trunk/; revision=39690
2011-10-31From me via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6462 & 6505Alexis La Goutte1-5/+29
Wireshark unable to parse ERSPAN from HP Comware platforms Huawei GRE ERSPAN is not decoded properly Add a pref to FORCE to decode directly Ethernet frame in GRE (with no ERSPAN Header) svn path=/trunk/; revision=39687
2011-10-31From Thomas Dreibholz via ↵Alexis La Goutte1-3/+15
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6524 Enhancement for the Component Status Protocol dissector The attached patch adds a dissection of the message flags field to the Component Status Protocol dissector. svn path=/trunk/; revision=39686
2011-10-31No need to ep_strdup a string to lua_pushstring.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=39684
2011-10-31Set the ENC_ on the remaining proto_add_item().Anders Broman1-27/+37
svn path=/trunk/; revision=39683
2011-10-30Don't ep_strdup the protocol name when register a dissector, becauseStig Bjørlykke1-1/+1
this name will be collected when loading a capture file and the name will be gone. svn path=/trunk/; revision=39681
2011-10-30Fixed some coding errors:Stig Bjørlykke1-2/+2
packet-bacapp.c:6154: error: stray '\250' in program packet-bacapp.c:7137: warning: cast to pointer from integer of different size svn path=/trunk/; revision=39680
2011-10-30Fix unused variable warnings.Anders Broman1-13/+11
svn path=/trunk/; revision=39679
2011-10-30From Thomas Dreibholz:Anders Broman1-5/+28
Update the NetPerfMeter protocol dissector to the latest version of NetPerfMeter (http://www.iem.uni-due.de/~dreibh/netperfmeter/). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6518 svn path=/trunk/; revision=39678
2011-10-30From Lori Tribble:Anders Broman1-63/+652
I found many new properties in BACnet that were not decoded correctly in Wireshark. I have attached a patch that adds decoding to the following properties: Fixed the following properties to decode: In the Accumulator Object: scale (187) prescale (185) logging-record (184) In Access Door Object: door-members (228) masked-alarm-values (234) In the Pulse Converter Object: input-reference (181) In the Group Object: list-of-group-members (53) In the Event Enrollment Object: object-property-reference (78) In the Command Object: action (2) In the Trend Log Multiple object: log-buffer (131) In the Event Log Object: log-buffer (131) In the Structured View object: subordinate-list (211) Added decoding for the following enumeration type properties: Logging-type (197) event-state (36) reliability (103) notify-type (208) door-status (231) lock-status (233) secured-status (235) maintenance-required (158) program-state (92) program-change (90) reason-for-halt (100) mode (160) silenced (163) operation-expected (161) tracking-value (164) file-access-method (41) The above fixes also fixed the log-buffer decoding of the old trend log recorded as Wireshark bug: #6458 I believe this patch also fixes bug: #6235. But the original bug did not contain a capture file so I am not positive my capture represents the originators issue. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6475 svn path=/trunk/; revision=39676
2011-10-30From Martin Kaiser:Anders Broman1-31/+475
DVB-CI / CI+ Operator Profile Resource https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6507 svn path=/trunk/; revision=39675
2011-10-30From Pascal Quantin:Anders Broman1-2/+2
Fix dissection of PLMN List IE. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6513 svn path=/trunk/; revision=39674
2011-10-30Increase the size of a unknown INTEGER to FT_INT64 to be able to showStig Bjørlykke1-1/+1
negative integers and integers up to MAXINT64. We still don't support integers between MAXINT64 and MAXUINT64, which would be 9 bytes long. svn path=/trunk/; revision=39673
2011-10-30[Automatic manuf, services and enterprise-numbers update for 2011-10-30]Gerald Combs1-5/+157
svn path=/trunk/; revision=39669
2011-10-30Clang Cat is watching you fail to check for a null pointer.Guy Harris1-2/+4
svn path=/trunk/; revision=39668
2011-10-29Don't set mr_mult_req_info->num_services *unless we're sureGuy Harris1-9/+9
mr_mult_req_info is non-null*! This should fix bug 6514, and possibly a bunch of other buildbot crashes. svn path=/trunk/; revision=39667
2011-10-29Added support for big integer64 values.Stig Bjørlykke1-4/+12
This fixes bug 6295. svn path=/trunk/; revision=39666
2011-10-29Fixed max and min in sint24_from_unparsed() again.Stig Bjørlykke1-1/+1
Note to self: don't think hex while doing something else... svn path=/trunk/; revision=39664
2011-10-28Fixed max and min in sint24_from_unparsed().Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=39662
2011-10-28Fixed a typo: strtoull() -> strtoul()Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=39661
2011-10-28Simplified code for checking integer ranges.Stig Bjørlykke1-102/+32
svn path=/trunk/; revision=39660
2011-10-28Added range checking for integers and give an appropriate errorStig Bjørlykke1-26/+207
message if value is outside of range (given by field type). svn path=/trunk/; revision=39659
2011-10-28Prefer previous error message if not having hfinfo->strings,Stig Bjørlykke1-7/+6
because this may give more interesting information. svn path=/trunk/; revision=39658
2011-10-28Fix the width of a type (and hopefully please the buildbots).Martin Mathieson1-1/+1
svn path=/trunk/; revision=39657
2011-10-28First go at calling UMTS RLC dissector from IxCatapult logs.Martin Mathieson3-15/+241
Had to change some #defines in the header file (for UDP-framed/heuristic dissector) - will need to update example sending program later on tonight. svn path=/trunk/; revision=39656
2011-10-28Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-6/+6
svn path=/trunk/; revision=39655
2011-10-28Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-3/+4
svn path=/trunk/; revision=39654
2011-10-28From Xiao Xiangquan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5767Alexis La Goutte3-0/+529
BitTorrent DHT dissector for wireshark From me : * Fix encoding attribut for proto_tree_add_item (with fix-encodings-args script) svn path=/trunk/; revision=39653
2011-10-28From Xiao Xiangquan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5767Alexis La Goutte1-32/+21
Make bt-utp as heuristic dissectors svn path=/trunk/; revision=39652
2011-10-28Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-6/+14
svn path=/trunk/; revision=39651
2011-10-28Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-9/+11
svn path=/trunk/; revision=39650
2011-10-28From Eliot:Anders Broman2-0/+41
Add runtime tracers (disabled by default) for debug. Add runtime tracers (disabled by default) for debug. This may be useful for ongoing development. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448 svn path=/trunk/; revision=39649
2011-10-28From Eliot:Anders Broman1-14/+16
ctypes updates, minor fixes ctypes updates, minor fixes Explicitly use ctypes for some calls. Remove spurious reference to homeplug. Remove unnecessary line continuation backslashes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448 svn path=/trunk/; revision=39648
2011-10-28From Eliot:Anders Broman1-1/+7
Define correct ctypes parameter and return types for used functions. Define correct ctypes parameter and return types for used functions. Particularly on 64 bit, int default doesn't work. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448 svn path=/trunk/; revision=39647
2011-10-28From Adam Mitz:Anders Broman1-4/+4
The RTPS2 dissector doesn't handle octetsToNextHeader properly in INFO_RELY submessages. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6506 svn path=/trunk/; revision=39646
2011-10-27Fix proto_tree_add_item( encoding args;Bill Meier12-7803/+7810
Do whitespace cleanup (for a few files). svn path=/trunk/; revision=39640
2011-10-27..Filter is not used any more.Anders Broman1-20/+14
svn path=/trunk/; revision=39639
2011-10-27Fix comparison with UAT keys.Anders Broman1-4/+4
svn path=/trunk/; revision=39637
2011-10-27Fix some proto_tree_add_item() encoding args;Bill Meier10-305/+299
In some files: Remove a few unneeded #includes; Do some whitespace/indentation cleanup svn path=/trunk/; revision=39635
2011-10-27Fix indentation.Anders Broman1-1027/+1027
svn path=/trunk/; revision=39634
2011-10-27The comparison with the UAT keys are broken, this isAnders Broman1-90/+8
a fix for fetching the IP address. svn path=/trunk/; revision=39633
2011-10-27Fix a typo.Bill Meier1-1/+1
svn path=/trunk/; revision=39632
2011-10-27Correct an off-by-one error introduced in r39626.Jeff Morriss1-1/+1
svn path=/trunk/; revision=39631
2011-10-27Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6498 :Jeff Morriss1-0/+1
Initialize cip_req_info_t.ciaData, too. svn path=/trunk/; revision=39630